Skip to content

Commit

Permalink
Merge pull request #1160 from mrapp-ke/revert
Browse files Browse the repository at this point in the history
Revert "Update GitHub Actions"
  • Loading branch information
michael-rapp authored Dec 17, 2024
2 parents 28c8190 + 6f6c45c commit ba4a23c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/template_publish_non_native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
name: Publish non-native platform wheels
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
Expand All @@ -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
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/template_publish_platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
name: Publish platform wheels
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit ba4a23c

Please sign in to comment.