@@ -95,15 +95,15 @@ jobs:
95
95
name : ${{ parameters.poolName }}
96
96
${{ if and(eq(parameters.poolName, ''), eq(parameters.agentOs, 'Windows')) }} :
97
97
${{ if eq(variables['System.TeamProject'], 'public') }} :
98
- name : NetCorePublic-Int- Pool
98
+ name : NetCorePublic-Pool
99
99
${{ if ne(parameters.isTestingJob, true) }} :
100
100
# Visual Studio Build Tools
101
101
queue : BuildPool.Windows.10.Amd64.VS2019.BT.Open
102
102
${{ if eq(parameters.isTestingJob, true) }} :
103
103
# Visual Studio Enterprise - contains some stuff, like SQL Server and IIS Express, that we use for testing
104
104
queue : BuildPool.Windows.10.Amd64.VS2019.Open
105
105
${{ if eq(variables['System.TeamProject'], 'internal') }} :
106
- name : NetCoreInternal-Int- Pool
106
+ name : NetCoreInternal-Pool
107
107
${{ if ne(parameters.isTestingJob, true) }} :
108
108
# Visual Studio Build Tools
109
109
queue : BuildPool.Windows.10.Amd64.VS2019.BT
@@ -138,6 +138,13 @@ jobs:
138
138
displayName : Install Node 10.x
139
139
inputs :
140
140
versionSpec : 10.x
141
+ - ${{ if eq(parameters.agentOs, 'Windows') }} :
142
+ - task : NuGetCommand@2
143
+ displayName : ' Clear NuGet caches'
144
+ condition : succeeded()
145
+ inputs :
146
+ command : custom
147
+ arguments : ' locals all -clear'
141
148
- ${{ if and(eq(parameters.installJdk, 'true'), eq(parameters.agentOs, 'Windows')) }} :
142
149
- powershell : |
143
150
./eng/scripts/InstallJdk.ps1 '11.0.1'
0 commit comments