@@ -11,12 +11,12 @@ parameters:
11
11
type : object
12
12
default :
13
13
- name : " AMD64"
14
- agentPool : " $(DEV_AMD64_Managed )"
14
+ agentPool : " $(DEV_AMD64_Managed_NoUMI_AZL3 )"
15
15
maxCPUs : " $(($(nproc) / 2))"
16
16
rawToolchainCacheURL : " $(rawToolchainCacheURL_AMD64_2.0)"
17
17
rawToolchainExpectedHash : " $(rawToolchainCacheHash_AMD64_2.0)"
18
18
- name : " ARM64"
19
- agentPool : " $(DEV_ARM64_Managed )"
19
+ agentPool : " $(DEV_ARM64_Managed_NoUMI_AZL3 )"
20
20
maxCPUs : " $(($(nproc) / 3))"
21
21
rawToolchainCacheURL : " $(rawToolchainCacheURL_ARM64_2.0)"
22
22
rawToolchainExpectedHash : " $(rawToolchainCacheHash_ARM64_2.0)"
@@ -63,6 +63,13 @@ extends:
63
63
ob_artifactBaseName : $(toolchainArtifactNameBase)_${{ configuration.name }}_$(System.JobAttempt)
64
64
ob_outputDirectory : $(Build.ArtifactStagingDirectory)
65
65
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
+
66
73
- template : .pipelines/templates/RawToolchainDownload.yml@self
67
74
parameters :
68
75
rawToolchainCacheURL : ${{ configuration.rawToolchainCacheURL }}
@@ -113,6 +120,13 @@ extends:
113
120
toolchainArtifactName : $[ stageDependencies.Toolchain_${{ configuration.name }}.Build.outputs['ToolchainArtifactName.toolchainArtifactName'] ]
114
121
toolchainTarballName : $[ stageDependencies.Toolchain_${{ configuration.name }}.Build.outputs['ToolchainArtifactName.toolchainTarballName'] ]
115
122
steps :
123
+ # Making sure all pip installations are using the authorized feed.
124
+ - task : PipAuthenticate@1
125
+ displayName : Enable internal pip feed
126
+ inputs :
127
+ onlyAddExtraIndex : false
128
+ artifactFeeds : " MarinerFeed"
129
+
116
130
- task : DownloadPipelineArtifact@2
117
131
displayName : " Download toolchain"
118
132
inputs :
@@ -165,6 +179,13 @@ extends:
165
179
toolchainArtifactName : $[ stageDependencies.Toolchain_${{ configuration.name }}.Build.outputs['ToolchainArtifactName.toolchainArtifactName'] ]
166
180
toolchainTarballName : $[ stageDependencies.Toolchain_${{ configuration.name }}.Build.outputs['ToolchainArtifactName.toolchainTarballName'] ]
167
181
steps :
182
+ # Making sure all pip installations are using the authorized feed.
183
+ - task : PipAuthenticate@1
184
+ displayName : Enable internal pip feed
185
+ inputs :
186
+ onlyAddExtraIndex : false
187
+ artifactFeeds : " MarinerFeed"
188
+
168
189
- task : DownloadPipelineArtifact@2
169
190
displayName : " Download toolchain"
170
191
inputs :
@@ -209,6 +230,13 @@ extends:
209
230
rpmsArtifactName : $[ stageDependencies.RPMs_${{ configuration.name }}.BuildAndTest.outputs['RPMsArtifactName.rpmsArtifactName'] ]
210
231
rpmsTarballName : $[ stageDependencies.RPMs_${{ configuration.name }}.BuildAndTest.outputs['RPMsArtifactName.rpmsTarballName'] ]
211
232
steps :
233
+ # Making sure all pip installations are using the authorized feed.
234
+ - task : PipAuthenticate@1
235
+ displayName : Enable internal pip feed
236
+ inputs :
237
+ onlyAddExtraIndex : false
238
+ artifactFeeds : " MarinerFeed"
239
+
212
240
- task : DownloadPipelineArtifact@2
213
241
displayName : " Download RPMs tarball"
214
242
inputs :
0 commit comments