File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -439,6 +439,7 @@ jobs:
439
439
channels :
440
440
- main
441
441
runtimeFlavor : mono
442
+ codeGenType : FullAOT
442
443
additionalJobIdentifier : Mono
443
444
${{ each parameter in parameters.jobParameters }} :
444
445
${{ parameter.key }} : ${{ parameter.value }}
@@ -456,6 +457,7 @@ jobs:
456
457
channels :
457
458
- main
458
459
runtimeFlavor : coreclr
460
+ codeGenType : NativeAOT
459
461
additionalJobIdentifier : CoreCLR
460
462
${{ each parameter in parameters.jobParameters }} :
461
463
${{ parameter.key }} : ${{ parameter.value }}
Original file line number Diff line number Diff line change @@ -548,6 +548,13 @@ def run_performance_job(args: RunPerformanceJobArgs):
548
548
configurations ["CodegenType" ] = str (args .codegen_type )
549
549
configurations ["RuntimeType" ] = str (args .runtime_flavor )
550
550
551
+ # .NET iOS and .NET MAUI iOS sample app scenarios
552
+ if args .run_kind == "maui_scenarios_ios" :
553
+ if not args .runtime_flavor in ("mono" , "coreclr" ):
554
+ raise Exception ("Runtime flavor must be specified for maui_scenarios_ios" )
555
+ configurations ["CodegenType" ] = str (args .codegen_type )
556
+ configurations ["RuntimeType" ] = str (args .runtime_flavor )
557
+
551
558
if ios_mono :
552
559
runtime_type = "Mono"
553
560
configurations ["iOSLlvmBuild" ] = str (args .ios_llvm_build )
You can’t perform that action at this time.
0 commit comments