Skip to content

Commit

Permalink
remove temporary continue-on-error configs
Browse files Browse the repository at this point in the history
  • Loading branch information
tdyas committed Feb 19, 2025
1 parent 6cc70e3 commit 9850e10
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 14 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,7 @@ jobs:
echo "PEX_FILENAME=$PEX_FILENAME" | tee -a "$GITHUB_ENV"
'
- continue-on-error: true
if: needs.release_info.outputs.is-release == 'true'
- if: needs.release_info.outputs.is-release == 'true'
name: Attest the Pants Pex artifact
uses: actions/attest-build-provenance@v2
with:
Expand Down Expand Up @@ -214,8 +213,7 @@ jobs:
echo "PEX_FILENAME=$PEX_FILENAME" | tee -a "$GITHUB_ENV"
'
- continue-on-error: true
if: needs.release_info.outputs.is-release == 'true'
- if: needs.release_info.outputs.is-release == 'true'
name: Attest the Pants Pex artifact
uses: actions/attest-build-provenance@v2
with:
Expand All @@ -231,8 +229,7 @@ jobs:
\ }}\" \\\n -H \"Content-Type: application/octet-stream\" \\\n \"${{\
\ needs.release_info.outputs.release-asset-upload-url }}?name=$(basename $WHL)\"\
\ \\\n --data-binary \"@$WHL\";\n"
- continue-on-error: true
if: needs.release_info.outputs.is-release == 'true'
- if: needs.release_info.outputs.is-release == 'true'
name: Attest the pantsbuild.pants.testutil wheel
uses: actions/attest-build-provenance@v2
with:
Expand Down Expand Up @@ -357,8 +354,7 @@ jobs:
echo "PEX_FILENAME=$PEX_FILENAME" | tee -a "$GITHUB_ENV"
'
- continue-on-error: true
if: needs.release_info.outputs.is-release == 'true'
- if: needs.release_info.outputs.is-release == 'true'
name: Attest the Pants Pex artifact
uses: actions/attest-build-provenance@v2
with:
Expand Down Expand Up @@ -483,8 +479,7 @@ jobs:
echo "PEX_FILENAME=$PEX_FILENAME" | tee -a "$GITHUB_ENV"
'
- continue-on-error: true
if: needs.release_info.outputs.is-release == 'true'
- if: needs.release_info.outputs.is-release == 'true'
name: Attest the Pants Pex artifact
uses: actions/attest-build-provenance@v2
with:
Expand Down
4 changes: 0 additions & 4 deletions src/python/pants_release/generate_github_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -949,8 +949,6 @@ def build_wheels_job(
"with": {
"subject-path": "dist/src.python.pants/*.pex",
},
# Temporary: Allow errors in this step while we test the release workflow.
"continue-on-error": True,
},
{
"name": "Upload Wheel and Pex",
Expand Down Expand Up @@ -987,8 +985,6 @@ def build_wheels_job(
"with": {
"subject-path": "dist/deploy/wheels/pantsbuild.pants/**/pantsbuild.pants.testutil*.whl",
},
# Temporary: Allow errors in this step while we test the release workflow.
"continue-on-error": True,
},
{
"name": "Upload testutil Wheel",
Expand Down

0 comments on commit 9850e10

Please sign in to comment.