read: prevent integer overflow in image grid validation #2
This file contains hidden or 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: CI Unix Static AV2 | |
| on: | |
| push: | |
| pull_request: | |
| paths: | |
| - ".github/actions/**" | |
| - ".github/workflows/ci-unix-static-av2.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-static-av2: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| also-enable-av1-codecs: [OFF, LOCAL] # On top of enabling AV2 codecs. | |
| include: | |
| - runs-on: ubuntu-latest | |
| compiler: gcc | |
| gcc: 14 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: ./.github/actions/setup-linux | |
| with: | |
| codec-aom: "LOCAL" | |
| codec-dav1d: ${{ matrix.also-enable-av1-codecs }} | |
| extra-cache-key: ${{ matrix.also-enable-av1-codecs }} | |
| gcc-version: ${{ matrix.gcc }} | |
| libyuv: "LOCAL" | |
| - name: Prepare libavif (cmake) | |
| # CMake 4.0.0 removed compatibility with CMake < 3.5. Add | |
| # -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. | |
| run: > | |
| cmake -G Ninja -S . -B build | |
| -DCMAKE_POLICY_VERSION_MINIMUM=3.5 | |
| -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF | |
| -DAVIF_CODEC_AVM=LOCAL | |
| -DAVIF_CODEC_AOM=${{ matrix.also-enable-av1-codecs }} | |
| -DAVIF_CODEC_DAV1D=${{ matrix.also-enable-av1-codecs }} | |
| -DAVIF_CODEC_SVT=${{ matrix.also-enable-av1-codecs }} | |
| -DAVIF_LIBYUV=LOCAL | |
| -DAVIF_LIBSHARPYUV=LOCAL | |
| -DAVIF_BUILD_EXAMPLES=ON -DAVIF_BUILD_APPS=ON | |
| -DAVIF_BUILD_TESTS=ON -DAVIF_GTEST=LOCAL | |
| -DAVIF_ENABLE_WERROR=ON | |
| - name: Build libavif | |
| run: cmake --build build --config Release --parallel 4 | |
| - name: Run AVIF Tests | |
| working-directory: ./build | |
| run: ctest -j $(getconf _NPROCESSORS_ONLN) --output-on-failure | |
| - name: Set CC on macOS | |
| if: ${{ runner.os == 'macOS' }} | |
| run: | |
| echo "CC=cc" >> $GITHUB_ENV | |
| shell: bash | |
| - name: Check static link bundling | |
| # Disabled until libavm properly depends on tensorflow-lite. | |
| if: ${{ false }} | |
| run: | | |
| ${{ env.CC }} -o avifenc -I./apps/shared -I./third_party/iccjpeg -I./include apps/avifenc.c \ | |
| apps/shared/*.c third_party/iccjpeg/iccjpeg.c build/libavif.a \ | |
| -lpng -ljpeg -lz -lm -ldl -lstdc++ | |
| ./avifenc --help |