We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0067c07 commit 131acf2Copy full SHA for 131acf2
1 file changed
.github/workflows/build.yml
@@ -67,15 +67,16 @@ jobs:
67
shell: bash
68
run: rm -rf libs && mkdir -p libs
69
70
+ - name: Set up Rust
71
+ if: matrix.container != 'alpine:latest'
72
+ uses: dtolnay/rust-toolchain@stable
73
+
74
- name: Install musl tools for cross-compile
75
if: matrix.build_musl == true
76
run: |
77
sudo apt-get update
- sudo apt-get install -y musl-tools
-
- - name: Set up Rust
- if: matrix.container != 'alpine:latest'
78
- uses: dtolnay/rust-toolchain@stable
+ sudo apt-get install -y musl-tools gcc-aarch64-linux-gnu
79
+ rustup target add aarch64-unknown-linux-musl
80
81
- name: Add musl target
82
0 commit comments