Skip to content

Commit 4b59c08

Browse files
committed
Add musl CI
1 parent 7723cf1 commit 4b59c08

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ jobs:
8989
with:
9090
target: i686-unknown-linux-gnu
9191

92-
- name: Install gcc-multilib
93-
run: sudo apt-get update && sudo apt-get install gcc-multilib
92+
- name: Install gcc-multilib and musl-tools
93+
run: sudo apt-get update && sudo apt-get install gcc-multilib musl-tools
9494
- name: Check compilation for x86 32bit
9595
uses: actions-rs/cargo@v1
9696
with:
@@ -107,6 +107,16 @@ jobs:
107107
command: check
108108
args: --target aarch64-linux-android
109109

110+
- uses: actions-rs/toolchain@v1
111+
with:
112+
target: i686-unknown-linux-musl
113+
114+
- name: Check compilation for musl
115+
uses: actions-rs/cargo@v1
116+
with:
117+
command: check
118+
args: --target i686-unknown-linux-musl
119+
110120
- uses: actions-rs/toolchain@v1
111121
with:
112122
target: wasm32-unknown-unknown

0 commit comments

Comments
 (0)