Skip to content

Commit bc8eed6

Browse files
committed
Update build-wheels.yml
1 parent 81c3c14 commit bc8eed6

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/build-wheels.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,17 @@ jobs:
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929

30-
- name: Run build script
30+
- name: Install musl on linux
31+
if: startsWith(matrix.os, 'ubuntu')
32+
run: |
33+
sudo apt-get install -y musl
34+
35+
- name: Run build script linux
36+
if: startsWith(matrix.os, 'ubuntu')
37+
run: python build.py do_clean exclude_runner zip
38+
39+
- name: Run build script non-linux
40+
if: startsWith(matrix.os, 'ubuntu') != true
3141
run: python build.py do_clean zip
3242

3343
- name: Upload WBT

0 commit comments

Comments
 (0)