Use self-hosted pool for Windows arm/arm64 CI (dotnet/core-setup#5071)
authorDavis Goodin <dagood@users.noreply.github.com>
Fri, 1 Feb 2019 17:08:04 +0000 (10:08 -0700)
committerGitHub <noreply@github.com>
Fri, 1 Feb 2019 17:08:04 +0000 (10:08 -0700)
Commit migrated from https://github.com/dotnet/core-setup/commit/b50554ac9a96fedc8580fa6090b6e9e75a23193b

eng/jobs/windows-build.yml

index 0759fe6..a215c99 100644 (file)
@@ -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: