From 09b834aeba3c1d6e3cda6609939fcecb0bf07125 Mon Sep 17 00:00:00 2001 From: Davis Goodin Date: Fri, 1 Feb 2019 10:08:04 -0700 Subject: [PATCH] Use self-hosted pool for Windows arm/arm64 CI (dotnet/core-setup#5071) Commit migrated from https://github.com/dotnet/core-setup/commit/b50554ac9a96fedc8580fa6090b6e9e75a23193b --- eng/jobs/windows-build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/eng/jobs/windows-build.yml b/eng/jobs/windows-build.yml index 0759fe6..a215c99 100644 --- a/eng/jobs/windows-build.yml +++ b/eng/jobs/windows-build.yml @@ -13,7 +13,10 @@ jobs: # For public or PR jobs, use the hosted pool. For internal jobs use the internal pool. # Will eventually change this to two BYOC pools. ${{ if eq(variables['System.TeamProject'], 'public') }}: - name: Hosted VS2017 + ${{ if contains(parameters.targetArchitecture, 'arm') }}: + name: dotnet-external-temp + ${{ if not(contains(parameters.targetArchitecture, 'arm')) }}: + name: Hosted VS2017 ${{ if ne(variables['System.TeamProject'], 'public') }}: name: dotnet-internal-temp strategy: -- 2.7.4