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