diff options
author | 2019-06-30 12:08:51 -0700 | |
---|---|---|
committer | 2019-06-30 12:08:51 -0700 | |
commit | 722544a3a517942b7c2c4975148c692dd72bf3b4 (patch) | |
tree | c544c8eec91978b42d0294f1ae5e5953ae5dfb32 | |
parent | Break up condition (diff) |
Use multi-line folded scalar for condition
-rw-r--r-- | azure-pipelines.yml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 087e188..c5eb593 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -46,12 +46,13 @@ jobs: displayName: 'Echo All Variables' - script: echo bar - condition: and( - succeeded(), - eq(variables.BASE_CHANGED, False), - eq(variables.VENV_CHANGED, False), - eq(variables.BASE_PULL, True) - ) + condition: > + and( + succeeded(), + eq(variables.BASE_CHANGED, False), + eq(variables.VENV_CHANGED, False), + eq(variables.BASE_PULL, True) + ) displayName: 'Compare String' - script: echo bar |