Make the gainMap member of avifImage a pointer. #1625
Workflow file for this run
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
# This is a copy of ci-unix-static.yml for building shared libraries. It differs from ci-unix-static.yml as follows: | |
# | |
# * The os matrix consists of ubuntu-latest only. | |
# * Does not build rav1e, SVT-AV1 nor libgav1. | |
name: CI Unix Shared Local | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
# Cancel the workflow if a new one is triggered from the same PR, branch, or tag, except on main. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
build-shared-local: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
libyuv: [OFF, LOCAL] | |
name: build-shared-local (${{ matrix.os }}, libyuv ${{ matrix.libyuv }}) | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Set GCC & G++ 10 compiler (on Linux) | |
if: runner.os == 'Linux' | |
run: echo "CC=gcc-10" >> $GITHUB_ENV && echo "CXX=g++-10" >> $GITHUB_ENV | |
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 | |
with: | |
python-version: '3.x' | |
- name: Cache external dependencies | |
id: cache-ext | |
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 | |
with: | |
path: ext | |
key: ${{ runner.os }}-shared-local-${{ hashFiles('ext/*.cmd') }} | |
- name: Setup cmake | |
uses: jwlawson/actions-setup-cmake@187efd9581ed20ee4e03c0dfb9ac2cd5896c4835 # v1.14.1 | |
with: | |
# CMake version 3.17 is required to build libwebp (which libsharpyuv is part of) on macOS. | |
cmake-version: '3.17.x' | |
- name: Print cmake version | |
run: cmake --version | |
- uses: ilammy/setup-nasm@321e6ed62a1fc77024a3bd853deb33645e8b22c4 # v1.4.0 | |
with: | |
version: 2.15.05 | |
- uses: seanmiddleditch/gha-setup-ninja@8b297075da4cd2a5f1fd21fe011b499edf06e9d2 # v4 | |
- run: pip install meson | |
- name: Print ImageMagick version | |
run: convert --version | |
- name: Build aom | |
if: steps.cache-ext.outputs.cache-hit != 'true' | |
working-directory: ./ext | |
run: bash -e aom.cmd | |
- name: Build dav1d | |
if: steps.cache-ext.outputs.cache-hit != 'true' | |
working-directory: ./ext | |
run: bash -e dav1d.cmd | |
- name: Build libyuv | |
if: steps.cache-ext.outputs.cache-hit != 'true' | |
working-directory: ./ext | |
run: bash -e libyuv.cmd | |
- name: Build libsharpyuv | |
if: steps.cache-ext.outputs.cache-hit != 'true' | |
working-directory: ./ext | |
run: bash -e libsharpyuv.cmd | |
- name: Build GoogleTest | |
if: steps.cache-ext.outputs.cache-hit != 'true' | |
working-directory: ./ext | |
run: bash -e googletest.cmd | |
- name: Prepare libavif (cmake) | |
run: > | |
mkdir build && cd build | |
cmake .. -G Ninja | |
-DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON | |
-DAVIF_CODEC_AOM=LOCAL -DAVIF_CODEC_DAV1D=LOCAL | |
-DAVIF_LIBYUV=${{ matrix.libyuv }} | |
-DAVIF_LIBSHARPYUV=LOCAL | |
-DAVIF_BUILD_EXAMPLES=ON -DAVIF_BUILD_APPS=ON | |
-DAVIF_BUILD_TESTS=ON -DAVIF_ENABLE_GTEST=ON -DAVIF_LOCAL_GTEST=ON | |
- name: Build libavif (ninja) | |
working-directory: ./build | |
run: ninja | |
- name: Run AVIF Tests | |
working-directory: ./build | |
run: ctest -j $(getconf _NPROCESSORS_ONLN) --output-on-failure |