We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81c3c14 commit bc8eed6Copy full SHA for bc8eed6
1 file changed
.github/workflows/build-wheels.yml
@@ -27,7 +27,17 @@ jobs:
27
with:
28
python-version: ${{ matrix.python-version }}
29
30
- - name: Run build script
+ - 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
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
41
run: python build.py do_clean zip
42
43
- name: Upload WBT
0 commit comments