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.
Create a SuperPMI collection pipeline
Start with a clone of jitstress.yml, and go from there.
- Loading branch information
1 parent
f1f7681
commit f2e1509
Showing
1 changed file
with
63 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,63 @@ | ||
trigger: none | ||
|
||
pr: none | ||
|
||
# schedules: | ||
# - cron: "0 4 * * *" | ||
# displayName: Daily at 8:00 PM (UTC-8:00) | ||
# branches: | ||
# include: | ||
# - master | ||
# always: true | ||
|
||
jobs: | ||
# | ||
# Checkout repository | ||
# | ||
- template: /eng/pipelines/common/checkout-job.yml | ||
|
||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/common/build-coreclr-and-libraries-job.yml | ||
buildConfig: checked | ||
platforms: | ||
# Linux tests are built on the OSX machines. | ||
- OSX_x64 | ||
- Linux_arm | ||
- Linux_arm64 | ||
- Linux_x64 | ||
- Windows_NT_x64 | ||
- Windows_NT_x86 | ||
- Windows_NT_arm64 | ||
- CoreClrTestBuildHost # Either OSX_x64 or Linux_x64 | ||
jobParameters: | ||
testGroup: outerloop | ||
|
||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml | ||
buildConfig: checked | ||
platforms: | ||
- CoreClrTestBuildHost # Either OSX_x64 or Linux_x64 | ||
jobParameters: | ||
testGroup: outerloop | ||
liveLibrariesBuildConfig: Release | ||
|
||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml | ||
buildConfig: checked | ||
platforms: | ||
# Linux tests are built on the OSX machines. | ||
- OSX_x64 | ||
- Linux_arm | ||
- Linux_arm64 | ||
- Linux_x64 | ||
- Windows_NT_x64 | ||
- Windows_NT_x86 | ||
- Windows_NT_arm64 | ||
helixQueueGroup: ci | ||
helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml | ||
jobParameters: | ||
testGroup: outerloop | ||
liveLibrariesBuildConfig: Release |