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 d94bee7 commit dda124eCopy full SHA for dda124e
.github/workflows/build.yml
@@ -14,9 +14,9 @@ jobs:
14
strategy:
15
matrix:
16
include:
17
- - name: x86_64-unknown-linux-gnu # linux-amd64
+ - name: x86_64-unknown-linux-musl # linux-amd64 static
18
runner: ubuntu-latest
19
- target: x86_64-unknown-linux-gnu
+ target: x86_64-unknown-linux-musl
20
- name: x86_64-pc-windows-msvc # win-amd64
21
runner: windows-latest
22
target: x86_64-pc-windows-msvc
@@ -36,6 +36,10 @@ jobs:
36
uses: dtolnay/rust-toolchain@stable
37
with:
38
targets: "${{ matrix.target }}"
39
+
40
+ - name: Install musl-tools (only for musl builds)
41
+ if: matrix.target == 'x86_64-unknown-linux-musl'
42
+ run: sudo apt-get update && sudo apt-get install -y musl-tools
43
44
- name: Setup Cache
45
uses: Swatinem/rust-cache@v2
0 commit comments