From bc3aaceed751961a6032cd1edcc6c253516a0392 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tom=C3=A1=C5=A1=20Rylek?= Date: Thu, 19 Sep 2019 07:30:15 -0700 Subject: [PATCH] Fix missing checkout step in several pipelines (dotnet/coreclr#26773) I have apparently missed some of the pipelines in my "one checkout" change. I have gone over all yml files under eng/pipelines and fixed the four remaining yml files by adding the missing step. Thanks Tomas Commit migrated from https://github.com/dotnet/coreclr/commit/16b27f7852a223752601f4623abae5c82ca732a1 --- eng/pipelines/coreclr/gc-longrunning.yml | 5 +++++ eng/pipelines/coreclr/jitstress.yml | 5 +++++ eng/pipelines/coreclr/jitstress2-jitstressregs.yml | 5 +++++ eng/pipelines/coreclr/jitstressregs-x86.yml | 5 +++++ 4 files changed, 20 insertions(+) diff --git a/eng/pipelines/coreclr/gc-longrunning.yml b/eng/pipelines/coreclr/gc-longrunning.yml index c14ba19..9ee66ca 100644 --- a/eng/pipelines/coreclr/gc-longrunning.yml +++ b/eng/pipelines/coreclr/gc-longrunning.yml @@ -3,6 +3,11 @@ trigger: none pr: none jobs: +# +# Checkout repository +# +- template: /eng/checkout-job.yml + - template: /eng/platform-matrix.yml parameters: jobTemplate: build-job.yml diff --git a/eng/pipelines/coreclr/jitstress.yml b/eng/pipelines/coreclr/jitstress.yml index d830fc9..0efaa33 100644 --- a/eng/pipelines/coreclr/jitstress.yml +++ b/eng/pipelines/coreclr/jitstress.yml @@ -11,6 +11,11 @@ schedules: always: true jobs: +# +# Checkout repository +# +- template: /eng/checkout-job.yml + - template: /eng/platform-matrix.yml parameters: jobTemplate: build-job.yml diff --git a/eng/pipelines/coreclr/jitstress2-jitstressregs.yml b/eng/pipelines/coreclr/jitstress2-jitstressregs.yml index 4e9b2a7..17c9378 100644 --- a/eng/pipelines/coreclr/jitstress2-jitstressregs.yml +++ b/eng/pipelines/coreclr/jitstress2-jitstressregs.yml @@ -11,6 +11,11 @@ schedules: always: true jobs: +# +# Checkout repository +# +- template: /eng/checkout-job.yml + - template: /eng/platform-matrix.yml parameters: jobTemplate: build-job.yml diff --git a/eng/pipelines/coreclr/jitstressregs-x86.yml b/eng/pipelines/coreclr/jitstressregs-x86.yml index d9a06e5..db03bed 100644 --- a/eng/pipelines/coreclr/jitstressregs-x86.yml +++ b/eng/pipelines/coreclr/jitstressregs-x86.yml @@ -11,6 +11,11 @@ schedules: always: true jobs: +# +# Checkout repository +# +- template: /eng/checkout-job.yml + - template: /eng/platform-matrix.yml parameters: jobTemplate: build-job.yml -- 2.7.4