Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trying out a different pool #76845

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ stages:
container: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream9
pool:
${{ if eq(variables['System.TeamProject'], 'public') }}:
name: $[replace(replace(eq(contains(coalesce(variables['System.PullRequest.TargetBranch'], variables['Build.SourceBranch'], 'refs/heads/main'), 'release'), 'true'), True, 'NetCore-Svc-Public' ), False, 'NetCore-Public')]
name: $[replace(replace(eq(contains(coalesce(variables['System.PullRequest.TargetBranch'], variables['Build.SourceBranch'], 'refs/heads/main'), 'release'), 'true'), True, 'NetCore-Svc-Public' ), False, 'NetCore-Public-Test')]
demands: ImageOverride -equals Build.Ubuntu.2204.Amd64.Open

${{ if eq(variables['System.TeamProject'], 'internal') }}:
Expand Down Expand Up @@ -193,7 +193,7 @@ stages:
testArguments: -testDesktop -testArch x86
helixQueueName: $(HelixWindowsQueueName)
helixApiAccessToken: $(HelixApiAccessToken)
poolParameters: ${{ parameters.windowsPool }}
poolParameters: NetCore-Public-Test

- template: eng/pipelines/test-windows-job.yml
parameters:
Expand All @@ -204,7 +204,7 @@ stages:
testArguments: -testDesktop -testArch x64
helixQueueName: $(HelixWindowsQueueName)
helixApiAccessToken: $(HelixApiAccessToken)
poolParameters: ${{ parameters.windowsPool }}
poolParameters: NetCore-Public-Test

- stage: Windows_Release_Desktop
dependsOn: Windows_Release_Build
Expand All @@ -221,7 +221,7 @@ stages:
testArguments: -testDesktop -testArch x86
helixQueueName: $(HelixWindowsQueueName)
helixApiAccessToken: $(HelixApiAccessToken)
poolParameters: ${{ parameters.windowsPool }}
poolParameters: NetCore-Public-Test

- ${{ if ne(variables['Build.Reason'], 'PullRequest') }}:
- template: eng/pipelines/test-windows-job.yml
Expand All @@ -233,7 +233,7 @@ stages:
testArguments: -testDesktop -testArch x64
helixQueueName: $(HelixWindowsQueueName)
helixApiAccessToken: $(HelixApiAccessToken)
poolParameters: ${{ parameters.windowsPool }}
poolParameters: NetCore-Public-Test

- template: eng/pipelines/test-windows-job.yml
parameters:
Expand Down Expand Up @@ -261,7 +261,7 @@ stages:
testArguments: -testCoreClr
helixQueueName: $(HelixWindowsQueueName)
helixApiAccessToken: $(HelixApiAccessToken)
poolParameters: ${{ parameters.windowsPool }}
poolParameters: NetCore-Public-Test

- ${{ if ne(variables['Build.Reason'], 'PullRequest') }}:
- template: eng/pipelines/test-windows-job.yml
Expand Down Expand Up @@ -294,7 +294,7 @@ stages:
testArguments: -testCoreClr -testIOperation -testCompilerOnly
helixQueueName: $(HelixWindowsQueueName)
helixApiAccessToken: $(HelixApiAccessToken)
poolParameters: ${{ parameters.windowsPool }}
poolParameters: NetCore-Public-Test

# This leg runs almost all the compiler tests supported on CoreCLR, but
# with additional validation for used assemblies and GetEmitDiagnostics
Expand All @@ -307,7 +307,7 @@ stages:
testArguments: -testCoreClr -testUsedAssemblies -testCompilerOnly
helixQueueName: $(HelixWindowsQueueName)
helixApiAccessToken: $(HelixApiAccessToken)
poolParameters: ${{ parameters.windowsPool }}
poolParameters: NetCore-Public-Test

- stage: Windows_Release_CoreClr
dependsOn: Windows_Release_Build
Expand All @@ -324,7 +324,7 @@ stages:
testArguments: -testCoreClr
helixQueueName: $(HelixWindowsQueueName)
helixApiAccessToken: $(HelixApiAccessToken)
poolParameters: ${{ parameters.windowsPool }}
poolParameters: NetCore-Public-Test

- stage: Unix_Debug_CoreClr
dependsOn: Unix_Build
Expand Down
Loading