Skip to content

Commit

Permalink
Update build-wheels.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jblindsay committed May 22, 2024
1 parent 81c3c14 commit bc8eed6
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,17 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Run build script
- name: Install musl on linux
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get install -y musl
- name: Run build script linux
if: startsWith(matrix.os, 'ubuntu')
run: python build.py do_clean exclude_runner zip

- name: Run build script non-linux
if: startsWith(matrix.os, 'ubuntu') != true
run: python build.py do_clean zip

- name: Upload WBT
Expand Down

0 comments on commit bc8eed6

Please sign in to comment.