Skip to content

Commit

Permalink
Re-revert
Browse files Browse the repository at this point in the history
  • Loading branch information
vrabaud committed May 23, 2024
1 parent 3a1c263 commit 180a6c2
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions .github/workflows/ci-unix-static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,34 @@ jobs:
libxml2: 'LOCAL'
libyuv: 'LOCAL'
recent-cmake: true
- uses: ./.github/actions/setup-macos
- uses: ./.github/actions/setup-common-pre
if: runner.os == 'macOS'
with:
codec-aom: 'LOCAL'
codec-dav1d: 'LOCAL'
codec-rav1e: 'LOCAL'

recent-cmake: true
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
with:
profile: minimal
toolchain: stable
override: true
- name: Install dependencies (macOS)
if: runner.os == 'macOS'
run: brew install imagemagick
- name: Install cargo-c (mac)
if: matrix.os == 'macos-latest'
env:
LINK: https://github.com/lu-zero/cargo-c/releases/latest/download
CARGO_C_FILE: cargo-c-macos.zip
run: |
curl -sLo $CARGO_C_FILE $LINK/$CARGO_C_FILE
unzip -o $CARGO_C_FILE -d ~/.cargo/bin
rm $CARGO_C_FILE
- uses: ./.github/actions/setup-common-post
if: runner.os == 'macOS'
with:
codec-rav1e: 'LOCAL'
- name: Prepare libavif (cmake)
run: >
cmake -G Ninja -S ./ -B build
Expand Down

0 comments on commit 180a6c2

Please sign in to comment.