summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorSergey Andreenko <seandree@microsoft.com>2019-03-15 10:38:47 -0700
committerGitHub <noreply@github.com>2019-03-15 10:38:47 -0700
commitb93bad8d293223ba35299f7ca1a2f65fac9d35ba (patch)
tree4f6038c374c98eeef954746293944f30bf3a452a /azure-pipelines.yml
parent5704d1ba9e4f27933bfa6bc18bdb83a9d840d632 (diff)
downloadcoreclr-b93bad8d293223ba35299f7ca1a2f65fac9d35ba.tar.gz
coreclr-b93bad8d293223ba35299f7ca1a2f65fac9d35ba.tar.bz2
coreclr-b93bad8d293223ba35299f7ca1a2f65fac9d35ba.zip
Add `Schedule` and 'Manual' as possible triggers for outerloop jobs. (#23271)
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml13
1 files changed, 2 insertions, 11 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 03fa821326..5016d7514a 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -136,8 +136,8 @@ jobs:
# Checked test builds
#
-# Pull request
-- ${{ if and(eq(variables['System.TeamProject'], 'public'), eq(variables['Build.Reason'], 'PullRequest')) }}:
+# The jobs that can be triggered in PR, manually from ADO and that are scheduled
+- ${{ if and(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest', 'Manual', 'Schedule')) }}:
- template: eng/platform-matrix.yml
parameters:
jobTemplate: test-job.yml
@@ -173,15 +173,6 @@ jobs:
readyToRun: true
testGroup: outerloop
-# Schedule or Manual
-- ${{ if and(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'Schedule', 'Manual')) }}:
- - template: eng/platform-matrix.yml
- parameters:
- jobTemplate: test-job.yml
- buildConfig: checked
- jobParameters:
- testGroup: outerloop
-
#
# Release test builds
#