From a8562fda3227c57f552568f073518f8a20802dba Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Tue, 22 Apr 2025 22:47:43 +0200 Subject: [PATCH] Use vmImage ubuntu-22.04 and install aspire workload in Azure DevOps CI-CD pipeline (#1282) * Install aspire workload in Azure DevOps CI-CD pipeline * vmImage: 'ubuntu-22.04' --- azure-pipelines-ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/azure-pipelines-ci.yml b/azure-pipelines-ci.yml index 1039d8fd..e98c695a 100644 --- a/azure-pipelines-ci.yml +++ b/azure-pipelines-ci.yml @@ -7,7 +7,7 @@ jobs: - job: Linux_Build_Test_SonarCloud pool: - vmImage: 'Ubuntu-latest' + vmImage: 'ubuntu-22.04' steps: - script: | @@ -24,6 +24,10 @@ jobs: dotnet tool install --global dotnet-coverage displayName: 'Install dotnet tools' + - script: | + dotnet workload install aspire + displayName: 'Install aspire' + - task: PowerShell@2 displayName: "Use JDK17 by default" inputs: