Skip to content

Commit

Permalink
Update GH Actions workflow to build Brioche for aarch64-linux
Browse files Browse the repository at this point in the history
  • Loading branch information
kylewlacy committed Dec 23, 2024
1 parent a45f37d commit 747f8f6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ jobs:
- name: x86_64-linux
runs_on: ubuntu-24.04
target: x86_64-unknown-linux-gnu
- name: aarch64-linux
runs_on: ubuntu-24.04
target: aarch64-unknown-linux-gnu
install_deps: |
sudo apt-get install -y gcc-aarch64-linux-gnu binutils-aarch64-linux-gnu
echo 'CC=aarch64-linux-gnu-gcc' >> $GITHUB_ENV
- name: x86_64-macos
runs_on: macos-14
target: x86_64-apple-darwin
Expand All @@ -83,6 +89,9 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
if: matrix.platform.install_deps
run: ${{ matrix.platform.install_deps }}
- name: Install Rust targets
run: rustup target add "$TARGET"
env:
Expand Down

0 comments on commit 747f8f6

Please sign in to comment.