From a13cf9ec65a0668e8d5a823ac4379bc4309d36b6 Mon Sep 17 00:00:00 2001 From: Andrea Bondavalli Date: Wed, 1 Mar 2023 20:21:19 +0100 Subject: [PATCH] Simplified Azure pipeline --- azure-pipelines.yml | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index fd1cf91..2121860 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -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)