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
2 changes: 1 addition & 1 deletion .vsts-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ extends:
parameters:
pool:
name: $(DncEngInternalBuildPool)
image: 1es-ubuntu-2204
image: build.azurelinux.3.amd64
os: linux
helixTargetQueue: ubuntu.2204.amd64
Comment on lines +174 to 176
Copy link

Copilot AI Apr 16, 2026

Choose a reason for hiding this comment

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

The PR title/description indicates Helix images should be replaced as well, but this stage still uses helixTargetQueue: ubuntu.2204.amd64 while the build pool image was switched to Azure Linux 3. Either update the Helix target queue to the Azure Linux 3 equivalent, or clarify in the PR description that Helix queues remain on Ubuntu 22.04.

Copilot uses AI. Check for mistakes.
oneESCompat:
Expand Down
2 changes: 1 addition & 1 deletion .vsts-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ stages:
parameters:
pool:
name: $(DncEngPublicBuildPool)
demands: ImageOverride -equals build.ubuntu.2204.amd64.open
demands: ImageOverride -equals build.azurelinux.3.amd64.open
os: linux
helixTargetQueue: ubuntu.2204.amd64.open
Comment on lines +49 to 51
Copy link

Copilot AI Apr 16, 2026

Choose a reason for hiding this comment

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

The PR title/description says Helix images are being moved from Ubuntu 22.04 to Azure Linux 3, but this pipeline still targets helixTargetQueue: ubuntu.2204.amd64.open. If Helix should also move, update the Helix queue to the Azure Linux 3 equivalent; otherwise, please adjust the PR title/description to clarify that only the build agent pool image is changing here.

Copilot uses AI. Check for mistakes.

Expand Down
4 changes: 2 additions & 2 deletions eng/pipelines/templates/jobs/vmr-synchronization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ jobs:
pool:
${{ if eq(variables['System.TeamProject'], 'public') }}:
name: $(DncEngPublicBuildPool)
image: 1es-ubuntu-2204-open
image: build.azurelinux.3.amd64.open
os: linux
${{ else }}:
name: $(DncEngInternalBuildPool)
demands: ImageOverride -equals 1es-ubuntu-2204
demands: ImageOverride -equals build.azurelinux.3.amd64
os: linux

steps:
Expand Down
4 changes: 2 additions & 2 deletions eng/pipelines/templates/variables/vmr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ variables:
- name: shortStackPoolName
value: NetCore-Public
- name: poolImage_Linux
value: build.ubuntu.2204.amd64.open
value: build.azurelinux.3.amd64.open
- name: poolImage_LinuxArm64
value: Mariner-2-Docker-ARM64
- name: poolName_LinuxArm64
Expand All @@ -102,7 +102,7 @@ variables:
- name: shortStackPoolName
value: $(DncEngInternalBuildPool)
- name: poolImage_Linux
value: build.ubuntu.2204.amd64
value: build.azurelinux.3.amd64
- name: poolImage_LinuxArm64
value: build.azurelinux.3.arm64
- name: poolName_LinuxArm64
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ extends:
parameters:
pool:
name: NetCore1ESPool-Svc-Internal
image: 1es-ubuntu-2204
image: build.azurelinux.3.amd64
os: linux
sdl:
sourceAnalysisPool:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ stages:
displayName: Tag & Scan
pool:
name: $(DncEngInternalBuildPool)
image: 1es-ubuntu-2204
image: build.azurelinux.3.amd64
os: linux

steps:
Expand Down
6 changes: 3 additions & 3 deletions src/SourceBuild/content/eng/pipelines/vmr-license-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ extends:
options: '--memory=20g'
pool:
name: NetCore1ESPool-Svc-Internal
image: 1es-ubuntu-2204
image: build.azurelinux.3.amd64
os: linux
sdl:
sourceAnalysisPool:
Expand Down Expand Up @@ -150,7 +150,7 @@ extends:
container: licenseScanContainer
pool:
name: NetCore1ESPool-Svc-Internal
demands: ImageOverride -equals 1es-ubuntu-2204
demands: ImageOverride -equals build.azurelinux.3.amd64
timeoutInMinutes: 420
strategy:
matrix: $[ dependencies.Setup.outputs['GetMatrix.matrix'] ]
Expand Down Expand Up @@ -224,7 +224,7 @@ extends:
condition: or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/heads/release'))
pool:
name: NetCore1ESPool-Svc-Internal
demands: ImageOverride -equals 1es-ubuntu-2204
demands: ImageOverride -equals build.azurelinux.3.amd64
variables:
- template: /eng/pipelines/templates/variables/pipelines.yml@self
steps:
Expand Down
Loading