There was an error while loading. Please reload this page.
1 parent f6b02b5 commit 2a875a3Copy full SHA for 2a875a3
1 file changed
.github/workflows/extra-platforms.yml
@@ -28,9 +28,11 @@ jobs:
28
rustup toolchain list
29
rustup target list --installed
30
31
- - name: Allow installing 32-bit arm packages
+ - name: Installing 32-bit CI env
32
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
+ 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
36
37
- name: Build
38
run: cargo build -Z build-std --verbose --target ${{ matrix.platform.target }}
0 commit comments