diff --git a/.github/workflows/template_publish_non_native.yml b/.github/workflows/template_publish_non_native.yml index 6aa2730ad..b3d10083a 100644 --- a/.github/workflows/template_publish_non_native.yml +++ b/.github/workflows/template_publish_non_native.yml @@ -25,6 +25,7 @@ jobs: name: Publish non-native platform wheels runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: - ubuntu-latest @@ -40,7 +41,7 @@ jobs: with: platforms: all - name: Build package - uses: pypa/cibuildwheel@v2.22 + uses: pypa/cibuildwheel@v2.17 env: CIBW_BEFORE_BUILD_LINUX: ./build --clean && SUBPROJECTS=${{ inputs.subproject }} TEST_SUPPORT=disabled GPU_SUPPORT=disabled ./build install diff --git a/.github/workflows/template_publish_platform.yml b/.github/workflows/template_publish_platform.yml index e96c2386c..7e007ca24 100644 --- a/.github/workflows/template_publish_platform.yml +++ b/.github/workflows/template_publish_platform.yml @@ -25,6 +25,7 @@ jobs: name: Publish platform wheels runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: - ubuntu-latest @@ -46,7 +47,7 @@ jobs: if: ${{ matrix.os == 'windows-latest' }} uses: ilammy/msvc-dev-cmd@v1 - name: Build package - uses: pypa/cibuildwheel@v2.22 + uses: pypa/cibuildwheel@v2.17 env: CIBW_BEFORE_BUILD_LINUX: ./build --clean && SUBPROJECTS=${{ inputs.subproject }} TEST_SUPPORT=disabled GPU_SUPPORT=disabled ./build install diff --git a/.github/workflows/test_publish.yml b/.github/workflows/test_publish.yml index 1dec1fbc8..622edb271 100644 --- a/.github/workflows/test_publish.yml +++ b/.github/workflows/test_publish.yml @@ -67,6 +67,6 @@ jobs: steps: - name: Check for success run: |- - if [[ "${{ needs.test_release.result }}" == "failure" ]]; then + if [[ "${{ needs.test_release.result }}" != "success" ]]; then exit 1 fi