Skip to content

Commit 4af3c90

Browse files
authored
Switched the fast-track PR check to run on an AZL 3.0 agent pool. (#13660)
1 parent f7e3b38 commit 4af3c90

2 files changed

Lines changed: 31 additions & 3 deletions

File tree

.pipelines/prchecks/PackageBuildPRCheck.yml

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ parameters:
1111
type: object
1212
default:
1313
- name: "AMD64"
14-
agentPool: "$(DEV_AMD64_Managed)"
14+
agentPool: "$(DEV_AMD64_Managed_NoUMI_AZL3)"
1515
maxCPUs: "$(($(nproc) / 2))"
1616
rawToolchainCacheURL: "$(rawToolchainCacheURL_AMD64_3.0)"
1717
rawToolchainExpectedHash: "$(rawToolchainCacheHash_AMD64_3.0)"
1818
- name: "ARM64"
19-
agentPool: "$(DEV_ARM64_Managed)"
19+
agentPool: "$(DEV_ARM64_Managed_NoUMI_AZL3)"
2020
maxCPUs: "$(($(nproc) / 3))"
2121
rawToolchainCacheURL: "$(rawToolchainCacheURL_ARM64_3.0)"
2222
rawToolchainExpectedHash: "$(rawToolchainCacheHash_ARM64_3.0)"
@@ -63,6 +63,13 @@ extends:
6363
ob_artifactBaseName: $(toolchainArtifactNameBase)_${{ configuration.name }}_$(System.JobAttempt)
6464
ob_outputDirectory: $(Build.ArtifactStagingDirectory)
6565
steps:
66+
# Making sure all pip installations are using the authorized feed.
67+
- task: PipAuthenticate@1
68+
displayName: Enable internal pip feed
69+
inputs:
70+
onlyAddExtraIndex: false
71+
artifactFeeds: "MarinerFeed"
72+
6673
- template: .pipelines/templates/RawToolchainDownload.yml@self
6774
parameters:
6875
rawToolchainCacheURL: ${{ configuration.rawToolchainCacheURL }}
@@ -120,6 +127,13 @@ extends:
120127
patterns: "**/$(toolchainTarballName)"
121128
targetPath: $(inputArtifactsLocation)
122129

130+
# Making sure all pip installations are using the authorized feed.
131+
- task: PipAuthenticate@1
132+
displayName: Enable internal pip feed
133+
inputs:
134+
onlyAddExtraIndex: false
135+
artifactFeeds: "MarinerFeed"
136+
123137
- template: .pipelines/templates/PackageBuild.yml@self
124138
parameters:
125139
checkBuildRetries: "1"
@@ -172,6 +186,13 @@ extends:
172186
patterns: "**/$(toolchainTarballName)"
173187
targetPath: $(inputArtifactsLocation)
174188

189+
# Making sure all pip installations are using the authorized feed.
190+
- task: PipAuthenticate@1
191+
displayName: Enable internal pip feed
192+
inputs:
193+
onlyAddExtraIndex: false
194+
artifactFeeds: "MarinerFeed"
195+
175196
- template: .pipelines/templates/PackageBuild.yml@self
176197
parameters:
177198
checkBuildRetries: "1"
@@ -216,6 +237,13 @@ extends:
216237
patterns: "**/$(rpmsTarballName)"
217238
targetPath: $(inputArtifactsLocation)
218239

240+
# Making sure all pip installations are using the authorized feed.
241+
- task: PipAuthenticate@1
242+
displayName: Enable internal pip feed
243+
inputs:
244+
onlyAddExtraIndex: false
245+
artifactFeeds: "MarinerFeed"
246+
219247
- template: .pipelines/templatesWithCheckout/SodiffCheck.yml@self
220248
parameters:
221249
inputArtifactsFolder: $(inputArtifactsLocation)

.pipelines/templates/PackageTestResultsAnalysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ parameters:
3232
default: "$(Agent.TempDirectory)"
3333

3434
steps:
35-
- bash: sudo tdnf install -y python3-junit-xml
35+
- bash: pip3 install --user junit_xml==1.9
3636
retryCountOnTaskFailure: 3
3737
displayName: "Install Python dependencies"
3838

0 commit comments

Comments
 (0)