diff options
author | 2019-06-30 12:04:57 -0700 | |
---|---|---|
committer | 2019-06-30 12:04:57 -0700 | |
commit | b92004fd5d89c4a0ece209768f39787bfb9dc739 (patch) | |
tree | 8c523d81fef1f5c907e22b60e08cd6394d95f76a | |
parent | Set to False again (diff) |
Break up condition
-rw-r--r-- | azure-pipelines.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index bcb6c54..087e188 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -46,7 +46,12 @@ jobs: displayName: 'Echo All Variables' - script: echo bar - condition: and(succeeded(), 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 |