Skip to content

Commit

Permalink
Add cross-compilation tools installation for aarch64 targets to CI wo…
Browse files Browse the repository at this point in the history
…rkflow
  • Loading branch information
nullchinchilla committed Sep 20, 2024
1 parent 9b77ead commit a12ec64
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build_and_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,13 @@ jobs:
override: true
target: ${{ matrix.target }}


- name: Install cross-compilation tools (aarch64)
if: matrix.target == 'aarch64-unknown-linux-musl'
run: |
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu
- name: Set default host
shell: bash
run: rustup set default-host ${{ matrix.target }}
Expand Down

0 comments on commit a12ec64

Please sign in to comment.