Skip to content

Commit

Permalink
CI: test with frame delay on macos-14-aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
thedataking committed Mar 16, 2024
1 parent 3d4cd0b commit 99472cf
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/build-and-test-aarch64-darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,21 @@ jobs:
key: arm-darwin-cargo-and-target-${{ hashFiles('**/Cargo.lock') }}
- name: cargo build for aarch64-apple-darwin
run: cargo build --release
- run: .github/workflows/test.sh \
-r ./target/release/dav1d \
-s ./target/release/seek_stress
- name: test without frame delay
run: .github/workflows/test.sh \
-r ./target/release/dav1d \
-s ./target/release/seek_stress
# tests run quickly so also cover the frame delay cases
- name: test with frame delay of 1
run: .github/workflows/test.sh \
-r ./target/release/dav1d \
-s ./target/release/seek_stress
-f 1
- name: test with frame delay of 2
run: .github/workflows/test.sh \
-r ./target/release/dav1d \
-s ./target/release/seek_stress
-f 2
- name: upload build artifacts
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 99472cf

Please sign in to comment.