summaryrefslogtreecommitdiff
path: root/eng/pipelines
diff options
context:
space:
mode:
authorFadi Hanna <fadim@microsoft.com>2019-08-27 15:22:21 -0700
committerGitHub <noreply@github.com>2019-08-27 15:22:21 -0700
commitd269a1545da4af1a6011f2884cce447169617601 (patch)
treebe6d0c52cde3e34f4b98f3b5c531a70edc7d2192 /eng/pipelines
parent652fe10ce3b56709e44bf0eb252ac55d6593516c (diff)
downloadcoreclr-d269a1545da4af1a6011f2884cce447169617601.tar.gz
coreclr-d269a1545da4af1a6011f2884cce447169617601.tar.bz2
coreclr-d269a1545da4af1a6011f2884cce447169617601.zip
Move testing jobs to a separate stage after the validation/publishing stage (#26334) (#26397)
* Move testing jobs to a separate stage after the validation/publishing stage
Diffstat (limited to 'eng/pipelines')
-rw-r--r--eng/pipelines/internal.yml57
1 files changed, 31 insertions, 26 deletions
diff --git a/eng/pipelines/internal.yml b/eng/pipelines/internal.yml
index cb41f0595c..5feef00bef 100644
--- a/eng/pipelines/internal.yml
+++ b/eng/pipelines/internal.yml
@@ -43,32 +43,6 @@ stages:
timeoutInMinutes: 120
#
- # Release test builds
- #
- - template: /eng/platform-matrix.yml
- parameters:
- jobTemplate: test-job.yml
- buildConfig: release
- platformGroup: all
- helixQueueGroup: all
- jobParameters:
- testGroup: outerloop
-
- #
- # ReadyToRun test builds
- #
- - template: /eng/platform-matrix.yml
- parameters:
- jobTemplate: test-job.yml
- buildConfig: release
- platformGroup: all
- helixQueueGroup: all
- jobParameters:
- testGroup: outerloop
- readyToRun: true
- displayNameArgs: R2R
-
- #
# Publish build information to Build Assets Registry
#
# This job gathers build assets from the pipeline (from each official
@@ -95,3 +69,34 @@ stages:
parameters:
# Symbol validation is not entirely reliable as of yet, so should be turned off until https://github.com/dotnet/arcade/issues/2871 is resolved.
enableSymbolValidation: false
+
+ - stage: test
+ displayName: Test
+ jobs:
+ #
+ # Release test builds
+ #
+ - template: /eng/platform-matrix.yml
+ parameters:
+ jobTemplate: test-job.yml
+ buildConfig: release
+ platformGroup: all
+ helixQueueGroup: all
+ ignoreDependencyOnBuildJobs: true
+ jobParameters:
+ testGroup: outerloop
+
+ #
+ # ReadyToRun test builds
+ #
+ - template: /eng/platform-matrix.yml
+ parameters:
+ jobTemplate: test-job.yml
+ buildConfig: release
+ platformGroup: all
+ helixQueueGroup: all
+ ignoreDependencyOnBuildJobs: true
+ jobParameters:
+ testGroup: outerloop
+ readyToRun: true
+ displayNameArgs: R2R