From 1fd9f1e666456416cdacafe5d706026dd52458e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnther=20Foidl?= Date: Tue, 30 Nov 2021 23:01:09 +0100 Subject: [PATCH] Specify docker images as resource Ah, too tired :-( --- .azure/pipelines/ci-outer-loop.yml | 8 ++++++++ .azure/pipelines/jobs/e2e_tests_all.yml | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.azure/pipelines/ci-outer-loop.yml b/.azure/pipelines/ci-outer-loop.yml index 58f1a5c..60b94f8 100644 --- a/.azure/pipelines/ci-outer-loop.yml +++ b/.azure/pipelines/ci-outer-loop.yml @@ -17,6 +17,14 @@ schedules: include: - master +resources: + containers: + - container: dotnet-sdk-60 + image: mcr.microsoft.com/dotnet/sdk:6.0 + + - container: dotnet-sdk-31 + image: mcr.microsoft.com/dotnet/sdk:3.1 + stages: - stage: Build_Test jobs: diff --git a/.azure/pipelines/jobs/e2e_tests_all.yml b/.azure/pipelines/jobs/e2e_tests_all.yml index 445701b..d032c58 100644 --- a/.azure/pipelines/jobs/e2e_tests_all.yml +++ b/.azure/pipelines/jobs/e2e_tests_all.yml @@ -6,10 +6,10 @@ jobs: strategy: matrix: net60: - sdk_image: mcr.microsoft.com/dotnet/sdk:6.0 + sdk_image: dotnet-sdk-60 TRX2JUNIT_VECTORS_ENABLED: true net31: - sdk_image: mcr.microsoft.com/dotnet/sdk:3.1 + sdk_image: dotnet-sdk-31 container: $(sdk_image) steps: - bash: |