From d8267267054f676882fe99222960b5ecb6544781 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Tue, 18 Jun 2024 09:32:12 +0200 Subject: [PATCH] TEMP: build all wheels on PRs for testing --- .github/workflows/release-artifacts.yml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release-artifacts.yml b/.github/workflows/release-artifacts.yml index ff3920466c..00763167f9 100644 --- a/.github/workflows/release-artifacts.yml +++ b/.github/workflows/release-artifacts.yml @@ -110,15 +110,17 @@ jobs: - ${{ startsWith(github.ref, 'refs/pull/') }} exclude: - # Don't build macos wheels on PR CI. - - is_pr: true - os: "macos-13" + # TEMP: build all wheels for testing + ## Don't build macos wheels on PR CI. + #- is_pr: true + # os: "macos-13" # Don't build aarch64 wheels on mac. - os: "macos-13" arch: aarch64 - # Don't build aarch64 wheels on PR CI. - - is_pr: true - arch: aarch64 + # TEMP: build all wheels for testing + ## Don't build aarch64 wheels on PR CI. + #- is_pr: true + # arch: aarch64 steps: - uses: actions/checkout@v4 @@ -136,9 +138,10 @@ jobs: if: matrix.arch == 'aarch64' run: echo 'CIBW_ARCHS_LINUX=aarch64' >> $GITHUB_ENV - - name: Only build a single wheel on PR - if: startsWith(github.ref, 'refs/pull/') - run: echo "CIBW_BUILD="cp38-manylinux_${{ matrix.arch }}"" >> $GITHUB_ENV + # TEMP: build all wheels for testing + #- name: Only build a single wheel on PR + # if: startsWith(github.ref, 'refs/pull/') + # run: echo "CIBW_BUILD="cp38-manylinux_${{ matrix.arch }}"" >> $GITHUB_ENV - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse