| # This is a copy of ci-unix-static.yml with gtest disabled. It differs from ci-unix-static.yml as follows: |
| # |
| # * The os matrix consists of ubuntu-24.04 only. |
| # * Does not build libgav1. (Building libgav1 would enable CXX in CMakeLists.txt.) |
| # * Disables gtest. |
| |
| name: CI Disable GTest |
| on: |
| push: |
| pull_request: |
| paths: |
| - '.github/workflows/ci-disable-gtest.yml' |
| - '**CMakeLists.txt' |
| - 'cmake/**' |
| - 'ext/**' |
| |
| 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-disable-gtest: |
| runs-on: ${{ matrix.os }} |
| strategy: |
| fail-fast: false |
| matrix: |
| os: [ubuntu-24.04] |
| include: |
| - runs-on: ubuntu-24.04 |
| compiler: gcc |
| gcc: 14 |
| |
| steps: |
| - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 |
| - name: Set GCC & G++ compiler (on Linux) |
| if: runner.os == 'Linux' |
| run: echo "CC=gcc-${{matrix.gcc}}" >> $GITHUB_ENV && echo "CXX=g++-${{matrix.gcc}}" >> $GITHUB_ENV |
| - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 |
| with: |
| python-version: '3.x' |
| - uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7 |
| with: |
| profile: minimal |
| toolchain: stable |
| override: true |
| - name: Install dependencies |
| run: | |
| sudo apt update |
| sudo apt install imagemagick libjpeg-turbo8-dev libpng-dev |
| - name: Install cargo-c |
| env: |
| LINK: https://github.com/lu-zero/cargo-c/releases/latest/download |
| CARGO_C_FILE: cargo-c-x86_64-unknown-linux-musl.tar.gz |
| run: | |
| curl -L $LINK/$CARGO_C_FILE | tar xz -C ~/.cargo/bin |
| - name: Cache external dependencies |
| id: cache-ext |
| uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 |
| with: |
| path: ext, build/_deps |
| key: ${{ runner.os }}-disable-gtest-${{ hashFiles('cmake/Modules/*', 'ext/*.cmd', 'ext/*.sh') }} |
| - name: Setup cmake |
| uses: jwlawson/actions-setup-cmake@802fa1a2c4e212495c05bf94dba2704a92a472be # v2.0.2 |
| 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@13cbeb366c45c4379d3478cdcbadd8295feb5028 # v1.5.1 |
| - uses: seanmiddleditch/gha-setup-ninja@8b297075da4cd2a5f1fd21fe011b499edf06e9d2 # v4 |
| - run: pip install meson |
| |
| - name: Prepare libavif (cmake) |
| run: > |
| cmake -G Ninja -S ./ -B build |
| -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF |
| -DAVIF_CODEC_AOM=LOCAL -DAVIF_CODEC_DAV1D=LOCAL |
| -DAVIF_CODEC_RAV1E=LOCAL -DAVIF_CODEC_SVT=LOCAL |
| -DAVIF_LIBYUV=LOCAL -DAVIF_LIBSHARPYUV=LOCAL |
| -DAVIF_BUILD_EXAMPLES=ON -DAVIF_BUILD_APPS=ON |
| -DAVIF_BUILD_TESTS=ON -DAVIF_ENABLE_GTEST=OFF |
| -DAVIF_ENABLE_WERROR=ON |
| - name: Cache cargo registry |
| uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 |
| continue-on-error: true |
| with: |
| path: ~/.cargo/registry/cache |
| key: cargo-registry-${{ runner.os }}-${{ hashFiles('ext/rav1e/Cargo.lock') }}-disable-gtest |
| restore-keys: | |
| cargo-registry-${{ runner.os }}-${{ hashFiles('ext/rav1e/Cargo.lock') }}- |
| cargo-registry-${{ runner.os }}- |
| - 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 |