From 828aaec97e0390b92612d45e506af847072612f2 Mon Sep 17 00:00:00 2001 From: Mike Bond Date: Fri, 4 Mar 2022 12:23:31 -0800 Subject: [PATCH] Linux build: Target AzurePipelines-EO agent pool (#1345) --- azure-pipelines.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 59c13c77e1..006795072f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,7 +1,7 @@ trigger: - main - refs/tags/* - + pr: - main @@ -33,10 +33,15 @@ jobs: windowsAgentPoolName: AzurePipelines-EO windowsImage: '' windowsImageOverride: AzurePipelinesWindows2019compliant + xcode: 13.1 buildType: 'manifest' - linuxImage: 'ubuntu-latest' - validPackagePrefixes: + + linuxAgentPoolName: AzurePipelines-EO + linuxsImage: '' + linuxImageOverride: AzurePipelinesUbuntu20.04compliant + + validPackagePrefixes: # Preferred prefixes - Xamarin - Mono @@ -81,5 +86,5 @@ jobs: - ${{ if eq(variables['System.TeamProject'], 'devdiv') }}: - template: sign-artifacts/jobs/v2.yml@internal-templates parameters: - dependsOn: [ 'build' ] + dependsOn: [ 'linux', 'macos', 'windows' ] condition: startsWith(variables['Build.SourceBranch'], 'refs/tags/')