Add arm7hf tools

This commit is contained in:
Félix Saparelli 2022-01-23 13:08:41 +13:00
parent c9dda12b18
commit 4329e094d5
No known key found for this signature in database
GPG Key ID: B948C4BAE44FC474
2 changed files with 6 additions and 0 deletions

View File

@ -83,6 +83,9 @@ jobs:
- name: Add aarch-gnu tools
run: sudo apt install -y gcc-aarch64-linux-gnu
if: startsWith(matrix.target, 'aarch64-unknown-linux')
- name: Add arm7hf-gnu tools
run: sudo apt install -y gcc-arm-linux-gnueabihf
if: startsWith(matrix.target, 'armv7-unknown-linux-gnueabihf')
- uses: actions-rs/toolchain@v1
with:

View File

@ -92,6 +92,9 @@ jobs:
- name: Add aarch-gnu tools
run: sudo apt install -y gcc-aarch64-linux-gnu
if: startsWith(matrix.target, 'aarch64-unknown-linux')
- name: Add arm7hf-gnu tools
run: sudo apt install -y gcc-arm-linux-gnueabihf
if: startsWith(matrix.target, 'armv7-unknown-linux-gnueabihf')
- uses: actions-rs/toolchain@v1
with: