From 38efd413d2dc1bff2304403a675f0cfba5e356dc Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Sun, 10 Nov 2024 02:29:19 +0100 Subject: [PATCH] ci(azure-pipelines): add BuildKit test job --- azure-pipelines.yaml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yaml b/azure-pipelines.yaml index 9b9e75d1b..6a2ae3a1f 100644 --- a/azure-pipelines.yaml +++ b/azure-pipelines.yaml @@ -16,7 +16,7 @@ jobs: echo Add other tasks to build, test, and deploy your project. echo See https://aka.ms/yaml displayName: 'Run a multi-line script' -- job: ContainerTest +- job: DockerTaskTest container: image: 'devfra.azurecr.io/de.fraport.trusted/ubuntu:22.04' endpoint: devfra @@ -28,3 +28,13 @@ jobs: Dockerfile: docker/backend/Dockerfile buildContext: . tags: backend +- job: BuildKitTest + container: + image: 'devfra.azurecr.io/de.fraport.trusted/buildkit:0.12.1' + endpoint: devfra + steps: + - script: buildctl build \ + --frontend=dockerfile.v0 \ + --local context=. \ + --local dockerfile=docker/backend/Dockerfile + displayName: BuildKit test \ No newline at end of file