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
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions azure-pipelines-integration-corehost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ parameters:
- name: poolName
displayName: Pool Name
type: string
default: NetCore-Public
default: NetCore-Public-Test
values:
- NetCore-Public
- NetCore-Public-Test
- NetCore-Svc-Public
- name: queueName
displayName: Queue Name
Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines-integration-lsp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ parameters:
- name: poolName
displayName: Pool Name
type: string
default: NetCore-Public
default: NetCore-Public-Test
values:
- NetCore-Public
- NetCore-Public-Test
- NetCore-Svc-Public
- name: queueName
displayName: Queue Name
Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines-integration-scouting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ parameters:
- name: poolName
displayName: Pool Name
type: string
default: NetCore-Public
default: NetCore-Public-Test
values:
- NetCore-Public
- NetCore-Public-Test
- NetCore-Svc-Public
- name: queueName
displayName: Queue Name
Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ parameters:
- name: poolName
displayName: Pool Name
type: string
default: NetCore-Public
default: NetCore-Public-Test
values:
- NetCore-Public
- NetCore-Public-Test
- NetCore-Svc-Public
- name: queueName
displayName: Queue Name
Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines-richnav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ parameters:
- name: poolName
displayName: Pool Name
type: string
default: NetCore-Public
default: NetCore-Public-Test
values:
- NetCore-Public
- NetCore-Public-Test
- NetCore-Svc-Public
- name: queueName
displayName: Queue Name
Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ variables:
# Set pool / queue name variables depending on which instance we're running in.
- name: PoolName
${{ if eq(variables['System.TeamProject'], 'public') }}:
value: NetCore-Public
value: NetCore-Public-Test-Test
${{ else }}:
value: NetCore1ESPool-Internal

Expand Down 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-Test')]
jaredpar marked this conversation as resolved.
Show resolved Hide resolved
demands: ImageOverride -equals Build.Ubuntu.2204.Amd64.Open

${{ if eq(variables['System.TeamProject'], 'internal') }}:
Expand Down