Skip to content
Merged
Show file tree
Hide file tree
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
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
4 changes: 2 additions & 2 deletions .azure-pipelines/templates/variables.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variables:
ubuntu_pool: 'pool-ubuntu-2004'
ubuntu_pool: 'pool-ubuntu-2204'
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 @@ -25,10 +25,10 @@ parameters:
default:
- name: AMD64
value: amd64
pool: pool-ubuntu-2004
pool: pool-ubuntu-latest-multi-core
- name: ARM64
value: arm64
pool: ubuntu-arm64-2004-pool
pool: pool-ubuntu-latest-arm64

jobs:
- job: CheckPullRequest
Expand Down
4 changes: 2 additions & 2 deletions scripts/live_test/CLITest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ variables:
stages:
# Azure DevOps limits the number of jobs to 256, so it must be split according to the platform and placed in different stages.
- stage: TestUbuntu
displayName: Live Test on Ubuntu 2004
displayName: Live Test on Ubuntu latest
condition: succeededOrFailed()
jobs:
- job: LiveTest
Expand Down Expand Up @@ -455,7 +455,7 @@ stages:
if [[ "$(USER_TARGET)" =~ "$(Target)" || ("$(USER_TARGET)" == "main" && ! "$(Target)" =~ ^ext-.*) || ("$(USER_TARGET)" == "extensions" && "$(Target)" =~ ^ext-.*) || ("$(USER_TARGET)" == "ALL" || "$(USER_TARGET)" == "all" || "$(USER_TARGET)" == "") ]]; then
echo "Match!"
echo "##vso[task.setvariable variable=Match]1"
echo "##vso[task.setvariable variable=platform]ubuntu2004"
echo "##vso[task.setvariable variable=platform]ubuntulatest"
else
echo "Not match!"
echo "##vso[task.setvariable variable=Match]0"
Expand Down
Loading