Skip to content

Commit

Permalink
Reenable Mono runtime tests on PRs (#62437)
Browse files Browse the repository at this point in the history
  • Loading branch information
akoeplinger authored Dec 9, 2021
1 parent ff006db commit 18944ff
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions eng/pipelines/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,8 @@ jobs:
runtimeFlavor: mono
platforms:
- OSX_x64
- Linux_arm64
- ${{ if eq(variables['isFullMatrix'], true) }}:
- Linux_arm64
helixQueueGroup: pr
helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml
jobParameters:
Expand All @@ -1035,7 +1036,10 @@ jobs:
liveRuntimeBuildConfig: release
runtimeVariant: minijit
condition: >-
eq(variables['isFullMatrix'], true)
or(
eq(dependencies.evaluate_paths.outputs['SetPathVars_mono.containsChange'], true),
eq(dependencies.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),
eq(variables['isFullMatrix'], true))
#
# Mono CoreCLR runtime Test executions using live libraries in interpreter mode
Expand All @@ -1047,7 +1051,8 @@ jobs:
runtimeFlavor: mono
platforms:
- OSX_x64
- Linux_arm64
- ${{ if eq(variables['isFullMatrix'], true) }}:
- Linux_arm64
helixQueueGroup: pr
helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml
jobParameters:
Expand All @@ -1056,7 +1061,10 @@ jobs:
liveRuntimeBuildConfig: release
runtimeVariant: monointerpreter
condition: >-
eq(variables['isFullMatrix'], true)
or(
eq(dependencies.evaluate_paths.outputs['SetPathVars_mono.containsChange'], true),
eq(dependencies.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),
eq(variables['isFullMatrix'], true))
#
# Mono CoreCLR runtime Test executions using live libraries and LLVM AOT
# Only when Mono is changed
Expand All @@ -1078,7 +1086,10 @@ jobs:
liveRuntimeBuildConfig: release
runtimeVariant: llvmaot
condition: >-
eq(variables['isFullMatrix'], true)
or(
eq(dependencies.evaluate_paths.outputs['SetPathVars_mono.containsChange'], true),
eq(dependencies.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),
eq(variables['isFullMatrix'], true))
#
# Mono CoreCLR runtime Test executions using live libraries and LLVM Full AOT
Expand All @@ -1101,7 +1112,10 @@ jobs:
liveRuntimeBuildConfig: release
runtimeVariant: llvmfullaot
condition: >-
eq(variables['isFullMatrix'], true)
or(
eq(dependencies.evaluate_paths.outputs['SetPathVars_mono.containsChange'], true),
eq(dependencies.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),
eq(variables['isFullMatrix'], true))
#
# Libraries Release Test Execution against a release mono runtime.
Expand Down

0 comments on commit 18944ff

Please sign in to comment.