Skip to content
Closed
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
6 changes: 5 additions & 1 deletion .azure-pipelines/sync-alias.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,14 @@ resources:
type: git
name: internal.wiki

variables:
- template: ${{ variables.Pipeline.Workspace }}/.azure-pipelines/templates/variables.yml

jobs:
- job: UpdateYaml
displayName: Update resourceManagement.yml
pool: pool-windows-2019
pool:
name: ${{ variables.windows_pool }}
uses:
repositories:
- ServiceContactList
Expand Down
6 changes: 3 additions & 3 deletions .azure-pipelines/templates/variables.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
variables:
ubuntu_pool: 'pool-ubuntu-2004'
ubuntu_multi_core_pool: 'pool-ubuntu-2004-multi-core'
ubuntu_pool: 'pool-ubuntu-2204'
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The reason for not using pool-ubuntu-latest is that Azure PowerShell team has already created pool-ubuntu-2204.

ubuntu_multi_core_pool: 'pool-ubuntu-latest-multi-core'
windows_pool: 'pool-windows-2019'
ubuntu_arm64_pool: 'ubuntu-arm64-2004-pool'
ubuntu_arm64_pool: 'pool-ubuntu-latest-arm64'
macos_pool: 'macOS-14'
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ parameters:
default:
- name: AMD64
value: amd64
pool: pool-ubuntu-2004-multi-core
pool: pool-ubuntu-latest-multi-core
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can this file be changed to use .azure-pipelines/templates/variables.yml?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Resloved in the new PR: #30996

- name: ARM64
value: arm64
pool: ubuntu-arm64-2004-pool
pool: pool-ubuntu-latest-arm64

jobs:
- job: CheckPullRequest
Expand Down
Loading