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 pgo testing to outerloop (dotnet#53301)
Also update jit-experimental to no longer run PGO or EH WriteThru.
- Loading branch information
1 parent
3270344
commit de6b2d9
Showing
5 changed files
with
129 additions
and
6 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
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,55 @@ | ||
trigger: none | ||
|
||
schedules: | ||
- cron: "0 16 * * 0,6" | ||
displayName: Sat and Sun at 8:00 AM (UTC-8:00) | ||
branches: | ||
include: | ||
- main | ||
always: true | ||
|
||
jobs: | ||
|
||
# | ||
# Build CoreCLR checked and libraries Release | ||
# | ||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/common/build-coreclr-and-libraries-job.yml | ||
buildConfig: checked | ||
platforms: | ||
- Linux_x64 | ||
- Linux_arm | ||
- Linux_arm64 | ||
- windows_x86 | ||
- windows_x64 | ||
- windows_arm64 | ||
jobParameters: | ||
# libraries test build platforms | ||
testBuildPlatforms: | ||
- Linux_x64 | ||
- windows_x64 | ||
|
||
# | ||
# Libraries Test Run using Release libraries, Checked CoreCLR, and stress modes | ||
# | ||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/libraries/run-test-job.yml | ||
buildConfig: Release | ||
platforms: | ||
- Linux_arm | ||
- Linux_arm64 | ||
- Linux_x64 | ||
- windows_arm64 | ||
- windows_x64 | ||
- windows_x86 | ||
helixQueueGroup: libraries | ||
helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml | ||
jobParameters: | ||
timeoutInMinutes: 150 | ||
testScope: innerloop | ||
liveRuntimeBuildConfig: checked | ||
dependsOnTestBuildConfiguration: Release | ||
dependsOnTestArchitecture: x64 | ||
coreclrTestGroup: pgo |
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,57 @@ | ||
trigger: none | ||
|
||
schedules: | ||
- cron: "0 8 * * *" | ||
displayName: Mon through Sun at 12:00 AM (UTC-8:00) | ||
branches: | ||
include: | ||
- main | ||
always: true | ||
|
||
jobs: | ||
|
||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/common/build-coreclr-and-libraries-job.yml | ||
buildConfig: checked | ||
platforms: | ||
- Linux_arm | ||
- Linux_arm64 | ||
- Linux_x64 | ||
- OSX_arm64 | ||
- windows_arm | ||
- windows_arm64 | ||
- windows_x64 | ||
- windows_x86 | ||
- CoreClrTestBuildHost # Either OSX_x64 or Linux_x64 | ||
jobParameters: | ||
testGroup: pgo | ||
|
||
- 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: pgo | ||
liveLibrariesBuildConfig: Release | ||
|
||
- template: /eng/pipelines/common/platform-matrix.yml | ||
parameters: | ||
jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml | ||
buildConfig: checked | ||
platforms: | ||
- Linux_arm | ||
- Linux_arm64 | ||
- Linux_x64 | ||
- OSX_arm64 | ||
- windows_arm | ||
- windows_arm64 | ||
- windows_x64 | ||
- windows_x86 | ||
helixQueueGroup: ci | ||
helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml | ||
jobParameters: | ||
testGroup: pgo | ||
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