diff options
-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 |