diff options
-rw-r--r-- | azure-pipelines.yml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5cfdb1a..2d6262a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -31,18 +31,17 @@ jobs: - job: build displayName: 'Build' + variables: + BASE_CHANGED: $[ coalesce(dependencies.test.outputs['check.BASE_CHANGED'], True) ] + VENV_CHANGED: $[ coalesce(dependencies.test.outputs['check.VENV_CHANGED'], True) ] + BASE_PULL: $[ coalesce(dependencies.test.outputs['check.BASE_PULL'], False) ] condition: > and( succeeded(), - eq(dependencies.test.outputs['check.BASE_CHANGED'], True) + eq(variables.BASE_CHANGED, True) ) dependsOn: test - variables: - BASE_CHANGED: $[ coalesce(dependencies.test.outputs['check.BASE_CHANGED'], True) ] - VENV_CHANGED: $[ coalesce(dependencies.test.outputs['check.VENV_CHANGED'], True) ] - BASE_PULL: $[ coalesce(dependencies.test.outputs['check.BASE_PULL'], False) ] - steps: - script: | echo "${BASE_CHANGED}" |