-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pipeline setup for jit experimental feature testing (#33709)
Create a pipeline to test functionality in the jit that is not (yet) enabled by default: * object stack allocation * eh write through * on stack replacement (+ osr stress) * guarded devirtualization Currently just x64, pri1 tests.
- Loading branch information
1 parent
3af8f77
commit a6f805d
Showing
3 changed files
with
63 additions
and
3 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,41 @@ | ||
trigger: none | ||
|
||
pr: none | ||
|
||
schedules: | ||
- cron: "0 22 * * 0,6" | ||
displayName: Sun at 2: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_x64 | ||
- Windows_NT_x64 | ||
jobParameters: | ||
testGroup: jit-experimental | ||
|
||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/coreclr/templates/test-job.yml | ||
buildConfig: checked | ||
platforms: | ||
- Linux_x64 | ||
- Windows_NT_x64 | ||
helixQueueGroup: ci | ||
helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml | ||
managedOsxBuild: false | ||
jobParameters: | ||
testGroup: jit-experimental | ||
liveLibrariesBuildConfig: Release |
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
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