Simplified Azure pipeline

This commit is contained in:
Andrea Bondavalli 2023-03-01 20:21:19 +01:00
parent 05e81bc1f7
commit a13cf9ec65

View File

@ -11,16 +11,13 @@ resources:
variables: variables:
tag: '$(Build.BuildId)' tag: '$(Build.BuildId)'
stages: pool: Default
- stage: Build
jobs: steps:
- job: Build - task: Docker@2
pool: Default displayName: Build and run daemon tests
steps: inputs:
- task: Docker@2 command: build
displayName: Build and run daemon tests dockerfile: '$(Build.SourcesDirectory)/Dockerfile.daemon_tests'
inputs: tags: |
command: build $(tag)
dockerfile: '$(Build.SourcesDirectory)/Dockerfile.daemon_tests'
tags: |
$(tag)