Skip to content

Commit

Permalink
Revert changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-rapp committed Nov 18, 2024
1 parent bb7fd0f commit 70ff0e9
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 42 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/template_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,6 @@ on:
required: false
pypi_password:
required: false
outputs:
pure_testbed_success:
value: ${{ jobs.publish_pure_testbed.outputs.success }}
platform_common_success:
value: ${{ jobs.publish_platform_common.outputs.success }}
platform_boosting_success:
value: ${{ jobs.publish_platform_boosting.outputs.success }}
platform_seco_success:
value: ${{ jobs.publish_platform_seco.outputs.success }}
non_native_common_success:
value: ${{ jobs.publish_non_native_common.outputs.success }}
non_native_boosting_success:
value: ${{ jobs.publish_non_native_boosting.outputs.success }}
non_native_seco_success:
value: ${{ jobs.publish_non_native_seco.outputs.success }}
jobs:
publish_pure_testbed:
name: testbed (pure wheels)
Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/template_publish_non_native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ on:
required: false
pypi_password:
required: false
outputs:
success:
value: ${{ jobs.publish_non_native_wheels.outputs.success }}
jobs:
publish_non_native_wheels:
name: Publish non-native platform wheels
Expand All @@ -31,8 +28,6 @@ jobs:
matrix:
os:
- ubuntu-latest
outputs:
success: ${{ steps.check-success.outputs.success }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -65,7 +60,3 @@ jobs:
name: wheels-${{ inputs.subproject }}-${{ runner.os }}-aarch64
path: wheelhouse/*.whl
if-no-files-found: error
- name: Check for success
id: check-success
if: success() || failure()
run: echo "success=true" >> $GITHUB_OUTPUT
9 changes: 0 additions & 9 deletions .github/workflows/template_publish_platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ on:
required: false
pypi_password:
required: false
outputs:
success:
value: ${{ jobs.publish_platform_wheels.outputs.success }}
jobs:
publish_platform_wheels:
name: Publish platform wheels
Expand All @@ -33,8 +30,6 @@ jobs:
- ubuntu-latest
- macos-latest
- windows-latest
outputs:
success: ${{ steps.check-success.outputs.success }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -71,7 +66,3 @@ jobs:
name: wheels-${{ inputs.subproject }}-${{ runner.os }}-x86_64
path: wheelhouse/*.whl
if-no-files-found: error
- name: Check for success
id: check-success
if: success() || failure()
run: echo "success=true" >> $GITHUB_OUTPUT
9 changes: 0 additions & 9 deletions .github/workflows/template_publish_pure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,10 @@ on:
required: false
pypi_password:
required: false
outputs:
success:
value: ${{ jobs.publish_pure_wheels.outputs.success }}
jobs:
publish_pure_wheels:
name: Publish pure wheels
runs-on: ubuntu-latest
outputs:
success: ${{ steps.check-success.outputs.success }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -53,7 +48,3 @@ jobs:
name: wheels-${{ inputs.subproject }}-any
path: wheelhouse/*.whl
if-no-files-found: error
- name: Check for success
id: check-success
if: success() || failure()
run: echo "success=true" >> $GITHUB_OUTPUT

0 comments on commit 70ff0e9

Please sign in to comment.