@@ -180,6 +180,27 @@ jobs:
180
180
181
181
displayName : ' Android Sample App'
182
182
183
+ - task : DownloadBuildArtifacts@0
184
+ displayName : ' Download binlog files'
185
+ inputs :
186
+ buildType : current
187
+ downloadType : single
188
+ downloadPath : ' $(builtAppDir)/androidHelloWorldBinlog'
189
+ # AndroidMono
190
+ ${{ if eq(parameters.runtimeType, 'AndroidMono')}} :
191
+ ${{ if eq(parameters.codeGenType, 'JIT') }} :
192
+ artifactName : ' AndroidMonoArm64BuildLog'
193
+ ${{ if eq(parameters.codeGenType, 'AOT') }} :
194
+ artifactName : ' AndroidMonoAOTArm64BuildLog'
195
+
196
+ # AndroidCoreCLR
197
+ ${{ if eq(parameters.runtimeType, 'AndroidCoreCLR')}} :
198
+ ${{ if eq(parameters.codeGenType, 'JIT') }} :
199
+ artifactName : ' AndroidCoreCLRArm64BuildLog'
200
+ ${{ if eq(parameters.codeGenType, 'R2R') }} :
201
+ artifactName : ' AndroidCoreCLRR2RArm64BuildLog'
202
+ checkDownloadedFiles : true
203
+
183
204
# Disabled due to not working and needing consistent normal android results. https://github.com/dotnet/performance/issues/4729
184
205
# - template: /eng/pipelines/templates/download-artifact-step.yml
185
206
# parameters:
@@ -233,6 +254,25 @@ jobs:
233
254
${{ if and(eq(parameters.runtimeType, 'iOSNativeAOT'), eq(parameters.iOSStripSymbols, 'True')) }} :
234
255
artifactName : ' iOSSampleAppNoSymbolsHybridGlobalization${{parameters.hybridGlobalization}}'
235
256
checkDownloadedFiles : true
257
+ - task : DownloadBuildArtifacts@0
258
+ displayName : ' Download binlog files'
259
+ inputs :
260
+ buildType : current
261
+ downloadType : single
262
+ downloadPath : ' $(builtAppDir)/iosHelloWorldBinlog'
263
+ ${{ if and(eq(parameters.runtimeType, 'iOSMono'), eq(parameters.iOSLlvmBuild, 'False'), eq(parameters.iOSStripSymbols, 'False')) }} :
264
+ artifactName : ' iOSMonoArm64NoLLVMNoStripSymbolsBuildLog'
265
+ ${{ if and(eq(parameters.runtimeType, 'iOSMono'), eq(parameters.iOSLlvmBuild, 'False'), eq(parameters.iOSStripSymbols, 'True')) }} :
266
+ artifactName : ' iOSMonoArm64NoLLVMStripSymbolsBuildLog'
267
+ ${{ if and(eq(parameters.runtimeType, 'iOSMono'), eq(parameters.iOSLlvmBuild, 'True'), eq(parameters.iOSStripSymbols, 'False')) }} :
268
+ artifactName : ' iOSMonoArm64LLVMNoStripSymbolsBuildLog'
269
+ ${{ if and(eq(parameters.runtimeType, 'iOSMono'), eq(parameters.iOSLlvmBuild, 'True'), eq(parameters.iOSStripSymbols, 'True')) }} :
270
+ artifactName : ' iOSMonoArm64LLVMStripSymbolsBuildLog'
271
+ ${{ if and(eq(parameters.runtimeType, 'iOSNativeAOT'), eq(parameters.iOSStripSymbols, 'False')) }} :
272
+ artifactName : ' iOSNativeAOTArm64NoStripSymbolsBuildLog'
273
+ ${{ if and(eq(parameters.runtimeType, 'iOSNativeAOT'), eq(parameters.iOSStripSymbols, 'True')) }} :
274
+ artifactName : ' iOSNativeAOTArm64StripSymbolsBuildLog'
275
+ checkDownloadedFiles : true
236
276
237
277
- ${{ if notIn(parameters.runtimeType, 'wasm', 'AndroidMono', 'AndroidCoreCLR', 'iOSMono', 'iOSNativeAOT') }} :
238
278
- ${{ if ne(parameters.runtimeFlavor, 'Mono') }} :
0 commit comments