From f74e6b8d3200682f6a21f8f53cd741b6a05148c8 Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Fri, 3 Jul 2020 15:00:21 +0200 Subject: [PATCH] Prepare conditional suspend --- .../templates/jobs/packaging-jobs.yml | 20 +++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.azure-pipelines/templates/jobs/packaging-jobs.yml b/.azure-pipelines/templates/jobs/packaging-jobs.yml index d12d37dbc..6ba08caeb 100644 --- a/.azure-pipelines/templates/jobs/packaging-jobs.yml +++ b/.azure-pipelines/templates/jobs/packaging-jobs.yml @@ -63,10 +63,12 @@ jobs: matrix: amd64: ARCH: amd64 - arm64: - ARCH: arm64 - armhf: - ARCH: armhf + # Do not run the QEMU jobs for the full-test-suite pipeline + ${{ if eq(variables['System.DefinitionId'], 1 )}}: + arm64: + ARCH: arm64 + armhf: + ARCH: armhf pool: vmImage: ubuntu-18.04 steps: @@ -84,10 +86,12 @@ jobs: matrix: amd64: ARCH: amd64 - arm64: - ARCH: arm64 - armhf: - ARCH: armhf + # Do not run the QEMU jobs for the full-test-suite pipeline + ${{ if eq(variables['System.DefinitionId'], 1 )}}: + arm64: + ARCH: arm64 + armhf: + ARCH: armhf pool: vmImage: ubuntu-18.04 steps: