replace fill_image() with an implementation that supports HDR images … #176
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: arm | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
env: | |
- { TARGET_HOST: "arm-linux-gnueabihf" } | |
env: ${{ matrix.env }} | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Checkout sample streams | |
uses: actions/checkout@v4 | |
with: | |
repository: strukturag/libde265-data | |
path: libde265-data | |
- name: Install dependencies | |
run: | | |
./scripts/ci-before-install-linux.sh | |
- name: Prepare CI | |
run: | | |
./scripts/ci-before-script.sh | |
- name: Run tests | |
run: | | |
./scripts/ci-run.sh |