From b12a09856932e62ca7fa17876dcc36df4a6b66d6 Mon Sep 17 00:00:00 2001 From: golmschenk Date: Sun, 28 Jan 2024 00:10:26 -0500 Subject: [PATCH] Disable fast-fail and ensure pipx on macOS --- .github/workflows/build_wheels.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 937339ab..693c168b 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -8,11 +8,18 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: + fail-fast: false os: [ubuntu-latest, windows-latest, macos-latest, macos-latest-xlarge] steps: - uses: actions/checkout@v4 + - name: ensure_pipx_on_macos + if: runner.os != 'macOS' + run: | + brew install pipx + pipx ensurepath + - name: build_wheels uses: pypa/cibuildwheel@v2.16.3