-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Disable QEMU workflows, add macOS/aarch64 workflow
- Loading branch information
1 parent
94bfe8e
commit 7823f89
Showing
3 changed files
with
55 additions
and
26 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: build and test on aarch64 | ||
on: [push, pull_request] | ||
jobs: | ||
test-on-macos-aarch64: | ||
runs-on: macos-14 | ||
name: test on macos-14-aarch64 | ||
steps: | ||
- name: install prerequisites | ||
run: | | ||
rustup target add armv7-unknown-linux-gnueabihf | ||
brew tap messense/macos-cross-toolchains | ||
brew install \ | ||
armv7-unknown-linux-gnueabihf \ | ||
meson \ | ||
docker | ||
source "$HOME/.cargo/env" | ||
- name: git checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
- name: cache rust dependencies | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.cargo/bin/ | ||
~/.cargo/registry/index/ | ||
~/.cargo/registry/cache/ | ||
~/.cargo/git/db/ | ||
target/ | ||
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: upload build artifacts | ||
if: ${{ !cancelled() }} | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: meson-test-logs | ||
path: | | ||
${{ github.workspace }}/build/meson-logs/testlog.txt | ||
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 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