Skip to content

Commit

Permalink
[ci] Improve push_signed_nugets job condition (#9240)
Browse files Browse the repository at this point in the history
We've recently hit some non-fatal issues in our signing jobs which are
preventing jobs that depend on them from running. This change relaxes
the condition for the push_signed_nugets job to allow it to run if the
signing jobs complete successfully or with issues.
  • Loading branch information
pjcollins committed Aug 22, 2024
1 parent abc2ff0 commit ffc0f30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-tools/automation/azure-pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ extends:
dependsOn:
- nuget_convert
- sign_net_linux
condition: and(eq(dependencies.nuget_convert.result, 'Succeeded'), eq(dependencies.sign_net_linux.result, 'Succeeded'))
condition: and(or(eq(dependencies.nuget_convert.result, 'Succeeded'), eq(dependencies.nuget_convert.result, 'SucceededWithIssues')), or(eq(dependencies.sign_net_linux.result, 'Succeeded'), eq(dependencies.sign_net_linux.result, 'SucceededWithIssues')))
timeoutInMinutes: 90
pool:
name: AzurePipelines-EO
Expand Down

0 comments on commit ffc0f30

Please sign in to comment.