From 2ca8277e543116ee02f67dffeb0cc84ec0824baa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tom=C3=A1=C5=A1=20Rylek?= Date: Thu, 19 Dec 2019 12:13:18 +0100 Subject: [PATCH] Add Pri1 Crossgen2 pipeline (#1033) --- eng/pipelines/coreclr/crossgen2-outerloop.yml | 55 +++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 eng/pipelines/coreclr/crossgen2-outerloop.yml diff --git a/eng/pipelines/coreclr/crossgen2-outerloop.yml b/eng/pipelines/coreclr/crossgen2-outerloop.yml new file mode 100644 index 0000000..d31a450 --- /dev/null +++ b/eng/pipelines/coreclr/crossgen2-outerloop.yml @@ -0,0 +1,55 @@ +trigger: none + +pr: none + +schedules: +- cron: "0 6 * * *" + displayName: Mon through Sun at 10: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 + - OSX_x64 + - Windows_NT_x64 + jobParameters: + testGroup: outerloop + +- template: /eng/pipelines/common/platform-matrix.yml + parameters: + jobTemplate: /eng/pipelines/coreclr/templates/build-test-job.yml + buildConfig: checked + platforms: + - OSX_x64 + - Windows_NT_x64 + jobParameters: + testGroup: outerloop + liveLibrariesBuildConfig: Release + +- template: /eng/pipelines/common/platform-matrix.yml + parameters: + jobTemplate: /eng/pipelines/coreclr/templates/run-test-job.yml + helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml + buildConfig: checked + platforms: + - Linux_x64 + - OSX_x64 + - Windows_NT_x64 + jobParameters: + testGroup: outerloop + readyToRun: true + crossgen2: true + displayNameArgs: R2R_CG2 + liveLibrariesBuildConfig: Release -- 2.7.4