From 0483e2db95d2c953a872f89ca438fec019f44787 Mon Sep 17 00:00:00 2001 From: Doug Bunting <6431421+dougbu@users.noreply.github.com> Date: Wed, 8 Apr 2020 19:12:45 -0700 Subject: [PATCH] Use BuildTools internally too - BuildPool.Server.Amd64.VS2019.BT in particular (for non-testing jobs) --- .azure/pipelines/jobs/default-build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.azure/pipelines/jobs/default-build.yml b/.azure/pipelines/jobs/default-build.yml index a57bf80032..1d903c765c 100644 --- a/.azure/pipelines/jobs/default-build.yml +++ b/.azure/pipelines/jobs/default-build.yml @@ -112,8 +112,10 @@ jobs: queue: BuildPool.Server.Amd64.VS2019.Open ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: NetCoreInternal-Pool - # Visual Studio Enterprise - contains some stuff, like SQL Server and IIS Express, that we use for testing - queue: BuildPool.Server.Amd64.VS2019 + ${{ if ne(parameters.isTestingJob, true) }}: + queue: BuildPool.Server.Amd64.VS2019.BT + ${{ if eq(parameters.isTestingJob, true) }}: + queue: BuildPool.Server.Amd64.VS2019 variables: - AgentOsName: ${{ parameters.agentOs }} - ASPNETCORE_TEST_LOG_MAXPATH: "200" # Keep test log file name length low enough for artifact zipping