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:
tag: '$(Build.BuildId)'
stages:
- stage: Build
jobs:
- job: Build
pool: Default
steps:
- task: Docker@2
displayName: Build and run daemon tests
inputs:
command: build
dockerfile: '$(Build.SourcesDirectory)/Dockerfile.daemon_tests'
tags: |
$(tag)
pool: Default
steps:
- task: Docker@2
displayName: Build and run daemon tests
inputs:
command: build
dockerfile: '$(Build.SourcesDirectory)/Dockerfile.daemon_tests'
tags: |
$(tag)