From 9d85d67ce884e99d07b7b652bff58a952287b778 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Thu, 16 Jan 2025 14:39:51 +0100 Subject: [PATCH] ci(azure-pipelines): use uncontainerized make-targets in CompileFrontend job --- azure-pipelines.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yaml b/azure-pipelines.yaml index a5ee34478..4902425c4 100644 --- a/azure-pipelines.yaml +++ b/azure-pipelines.yaml @@ -95,15 +95,15 @@ jobs: inputs: targetType: inline script: | - make compile-frontend + make -- --compile-frontend IN_CONTAINER=true - task: Bash@3 name: testFrontend displayName: Test frontend inputs: targetType: inline script: | - make lint-frontend - make test-frontend + make -- --lint-frontend IN_CONTAINER=true + make -- --test-frontend IN_CONTAINER=true - task: CopyFiles@2 name: CopyFrontendArtifacts displayName: Prepare frontend artifacts