ci(azure-pipelines): always run dependency build when not on update branch
This commit is contained in:
parent
517144c0cf
commit
17c7ed89c5
@ -34,6 +34,11 @@ jobs:
|
||||
- job: SetupDependencies_${{parameters.serviceName}}
|
||||
displayName: Install ${{parameters.serviceName}} dependencies
|
||||
dependsOn: SetupImage_${{parameters.serviceName}}
|
||||
condition: always() # TODO: only succeeded and skipped
|
||||
${{ if startsWith(variables['Build.SourceBranch'], 'refs/tags/') }}:
|
||||
condition: succeeded()
|
||||
${{ else }}:
|
||||
condition: always()
|
||||
pool: '${{parameters.dependenciesBuildPool}}'
|
||||
container:
|
||||
# TODO: do not use latest on update branches
|
||||
|
||||
Loading…
Reference in New Issue
Block a user