Skip to content

Commit

Permalink
Move Windows Mono to Staging (Closes: dotnet#49569)
Browse files Browse the repository at this point in the history
  • Loading branch information
directhex committed Mar 15, 2021
1 parent 3f8ddff commit 72f23c4
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 5 deletions.
42 changes: 42 additions & 0 deletions eng/pipelines/runtime-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,48 @@ jobs:
eq(variables['monoContainsChange'], true),
eq(variables['isFullMatrix'], true))
#
# Build the whole product using Mono and run libraries tests
#
- template: /eng/pipelines/common/platform-matrix.yml
parameters:
jobTemplate: /eng/pipelines/common/global-build-job.yml
helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml
buildConfig: Release
runtimeFlavor: mono
platforms:
- Windows_x64
- Windows_x86
variables:
# map dependencies variables to local variables
- name: librariesContainsChange
value: $[ dependencies.evaluate_paths.outputs['SetPathVars_libraries.containsChange'] ]
- name: monoContainsChange
value: $[ dependencies.evaluate_paths.outputs['SetPathVars_mono.containsChange'] ]
jobParameters:
testGroup: innerloop
nameSuffix: AllSubsets_Mono
buildArgs: -s mono+libs+host+packs+libs.tests -c $(_BuildConfig) /p:ArchiveTests=true
timeoutInMinutes: 120
condition: >-
or(
eq(dependencies.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),
eq(dependencies.evaluate_paths.outputs['SetPathVars_mono.containsChange'], true),
eq(dependencies.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),
eq(variables['isFullMatrix'], true))
# extra steps, run tests
extraStepsTemplate: /eng/pipelines/libraries/helix.yml
extraStepsParameters:
creator: dotnet-bot
testRunNamePrefixSuffix: Mono_$(_BuildConfig)
scenarios:
- normal
condition: >-
or(
eq(variables['librariesContainsChange'], true),
eq(variables['monoContainsChange'], true),
eq(variables['isFullMatrix'], true))
#
# Build the whole product using Mono and run libraries tests
#
Expand Down
10 changes: 5 additions & 5 deletions eng/pipelines/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -440,8 +440,8 @@ jobs:
- Linux_x64
- Linux_arm64
# - Linux_musl_arm64
- windows_x64
- windows_x86
# - windows_x64
# - windows_x86
# - windows_arm
# - windows_arm64
jobParameters:
Expand Down Expand Up @@ -519,8 +519,8 @@ jobs:
platforms:
- Linux_x64
# - Linux_musl_arm64
- windows_x64
- windows_x86
# - windows_x64
# - windows_x86
# - windows_arm
# - windows_arm64
jobParameters:
Expand Down Expand Up @@ -884,7 +884,7 @@ jobs:
runtimeFlavor: mono
buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}
platforms:
- windows_x64
# - windows_x64
- OSX_x64
- Linux_arm64
- Linux_x64
Expand Down

0 comments on commit 72f23c4

Please sign in to comment.