Skip to content

Commit

Permalink
feat: add installation of aarch64 linker in CI workflows
Browse files Browse the repository at this point in the history
Signed-off-by: simonsan <[email protected]>
  • Loading branch information
simonsan committed Nov 30, 2024
1 parent ce0ce7c commit adcbcca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/install-arm-linkers.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
- name: Install armv7 and aarch64 Linkers
if: runner.os == 'Linux'
run: |
sudo apt install gcc-aarch64-linux-gnu
sudo apt install gcc-arm-linux-gnueabihf
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ jobs:
- name: "Install armv7 and aarch64 Linkers"
if: "runner.os == 'Linux'"
run: |
"sudo apt install gcc-arm-linux-gnueabihf"
sudo apt install gcc-aarch64-linux-gnu
sudo apt install gcc-arm-linux-gnueabihf
- uses: swatinem/rust-cache@v2
with:
key: ${{ join(matrix.targets, '-') }}
Expand Down

0 comments on commit adcbcca

Please sign in to comment.