@@ -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)
0 commit comments