Skip to content

Commit

Permalink
Stop running both normal and no_tiered_compilation scenarios for core…
Browse files Browse the repository at this point in the history
…clr PRs (#69178)
  • Loading branch information
jakobbotsch authored May 12, 2022
1 parent 3edb959 commit 7723254
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions eng/pipelines/common/templates/runtimes/run-test-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -394,9 +394,16 @@ jobs:
helixProjectArguments: '$(Build.SourcesDirectory)/src/tests/Common/helixpublishwitharcade.proj'

${{ if in(parameters.testGroup, 'innerloop', 'outerloop') }}:
scenarios:
- normal
- ${{ if ne(parameters.runtimeFlavor, 'mono') }}: # tiered compilation isn't done on mono yet
${{ if eq(parameters.runtimeFlavor, 'mono') }}:
# tiered compilation isn't done on mono yet
scenarios:
- normal
${{ elseif eq(variables['Build.Reason'], 'PullRequest') }}:
scenarios:
- no_tiered_compilation
${{ else }}:
scenarios:
- normal
- no_tiered_compilation

${{ if in(parameters.testGroup, 'jitstress') }}:
Expand Down

0 comments on commit 7723254

Please sign in to comment.