From bc8eed6d3a028b68a5bfbd61570d258d03256b29 Mon Sep 17 00:00:00 2001 From: John Lindsay Date: Wed, 22 May 2024 11:30:18 -0400 Subject: [PATCH] Update build-wheels.yml --- .github/workflows/build-wheels.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index 2a373562..366678bd 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -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