Skip to content

Commit

Permalink
handle retries
Browse files Browse the repository at this point in the history
  • Loading branch information
qmuntal committed Oct 25, 2024
1 parent 5e12e9b commit 3bd1a03
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eng/pipeline/stages/run-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,8 @@ stages:
condition: and(ne(variables['TEST_BUILDER_SUCCESSFUL'], 'true'), succeeded())
${{ if ne(attempt, 'FINAL') }}:
ignoreLASTEXITCODE: true
${{ if eq(parameters.builder.broken, true) }}:
${{ elseif eq(parameters.builder.broken, true) }}:
# Don't fail the job if we are at the last retry and the builder is marked as broken.
continueOnError: true
# - ${{ if eq(parameters.builder.config, 'buildandpack' ) }}:
Expand Down

0 comments on commit 3bd1a03

Please sign in to comment.