forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Job Description for Release testing
This change adds a job description for testing release bits. It runs outer loop tests on all platforms (with and without R2R) every night at 10pm.
- Loading branch information
1 parent
79a684b
commit ab17b07
Showing
1 changed file
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
trigger: none | ||
|
||
pr: none | ||
|
||
schedules: | ||
- cron: "0 6 * * *" | ||
displayName: Daily at 10:00 PM (UTC-8:00) | ||
branches: | ||
include: | ||
- master | ||
always: true | ||
|
||
jobs: | ||
# | ||
# Checkout repository | ||
# | ||
- template: /eng/pipelines/common/checkout-job.yml | ||
|
||
# | ||
# Release builds | ||
# | ||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/coreclr/templates/build-job.yml | ||
buildConfig: release | ||
platformGroup: all | ||
jobParameters: | ||
timeoutInMinutes: 120 | ||
|
||
# | ||
# Release test builds | ||
# | ||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/coreclr/templates/build-test-job.yml | ||
buildConfig: release | ||
platformGroup: all | ||
testGroup: outerloop | ||
|
||
# | ||
# Release test runs | ||
# | ||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/coreclr/templates/run-test-job.yml | ||
buildConfig: release | ||
platformGroup: all | ||
helixQueueGroup: ci | ||
helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml | ||
jobParameters: | ||
testGroup: outerloop | ||
|
||
# | ||
# Release R2R test runs | ||
# | ||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/coreclr/templates/run-test-job.yml | ||
buildConfig: release | ||
platformGroup: all | ||
helixQueueGroup: ci | ||
helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml | ||
jobParameters: | ||
testGroup: outerloop | ||
readyToRun: true | ||
displayNameArgs: R2R | ||
|
||
|
||
# | ||
# Crossgen-comparison jobs | ||
# | ||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/coreclr/templates/crossgen-comparison-job.yml | ||
buildConfig: release | ||
platforms: | ||
- Linux_arm | ||
helixQueueGroup: ci | ||
helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml |