Skip to content

Commit 2a875a3

Browse files
author
Vasily Galkin
committed
fixing 32bit arm env
1 parent f6b02b5 commit 2a875a3

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/extra-platforms.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,11 @@ jobs:
2828
rustup toolchain list
2929
rustup target list --installed
3030
31-
- name: Allow installing 32-bit arm packages
31+
- name: Installing 32-bit CI env
3232
if: ${{ runner.os == 'Linux' }}
33-
run: sudo dpkg --add-architecture armhf && sudo apt update && sudo apt install gcc-arm-linux-gnueabi arm-linux-musleabihf-gcc:armhf
33+
run: |
34+
sudo dpkg --add-architecture armhf && sudo apt-get update && sudo apt install gcc-arm-linux-gnueabi musl-dev:armhf # linker
35+
rustup target add ${{ matrix.platform.target }} # crt files
3436
3537
- name: Build
3638
run: cargo build -Z build-std --verbose --target ${{ matrix.platform.target }}

0 commit comments

Comments
 (0)