ms.topic | ms.service | ms.manager | ms.author | author | ms.date |
---|---|---|---|---|---|
include |
azure-devops-pipelines |
mijacobs |
jukullam |
juliakm |
06/19/2024 |
-
Only when all previous direct and indirect dependencies with the same agent pool succeed. If you have different agent pools, those stages or jobs run concurrently. This condition is the default if no condition is set in the YAML.
-
Even if a previous dependency fails, unless the run is canceled. Use
succeededOrFailed()
in the YAML for this condition. -
Even if a previous dependency fails, and even if the run is canceled. Use
always()
in the YAML for this condition. -
Only when a previous dependency fails. Use
failed()
in the YAML for this condition.