summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorEgor Chesakov <Egor.Chesakov@microsoft.com>2019-01-24 10:25:46 -0800
committerGitHub <noreply@github.com>2019-01-24 10:25:46 -0800
commit9ba6f7b6c28e1e80c4d3685b7f08f10c06c8b65c (patch)
tree5115b9250669c0d3d59d92c8ec263f0df36957b1 /azure-pipelines.yml
parent4ec2e2c724b86fac13b0445aee5200d1ea6761fd (diff)
downloadcoreclr-9ba6f7b6c28e1e80c4d3685b7f08f10c06c8b65c.tar.gz
coreclr-9ba6f7b6c28e1e80c4d3685b7f08f10c06c8b65c.tar.bz2
coreclr-9ba6f7b6c28e1e80c4d3685b7f08f10c06c8b65c.zip
Use .asArray/.asString syntax for scenarios and helixQueues (#22173)
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml40
1 files changed, 34 insertions, 6 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 1b55807732..ee7b2ed6cc 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -130,7 +130,11 @@ jobs:
buildConfig: checked
jobParameters:
priority: 0
- scenarios: 'normal,no_tiered_compilation'
+ scenarios:
+ asString: 'normal,no_tiered_compilation'
+ asArray:
+ - normal
+ - no_tiered_compilation
timeoutInMinutes: 240
# Pri1 (CI)
@@ -141,7 +145,11 @@ jobs:
buildConfig: checked
jobParameters:
priority: 1
- scenarios: 'normal,no_tiered_compilation'
+ scenarios:
+ asString: 'normal,no_tiered_compilation'
+ asArray:
+ - normal
+ - no_tiered_compilation
timeoutInMinutes: 360
# Pri1 crossgen (CI)
@@ -153,7 +161,11 @@ jobs:
jobParameters:
priority: 1
crossgen: true
- scenarios: 'normal,no_tiered_compilation'
+ scenarios:
+ asString: 'normal,no_tiered_compilation'
+ asArray:
+ - normal
+ - no_tiered_compilation
timeoutInMinutes: 360
# Pri1 (Manual)
@@ -164,7 +176,15 @@ jobs:
buildConfig: checked
jobParameters:
priority: 1
- scenarios: 'normal,no_tiered_compilation,jitstress1,jitstress2,jitstress1_tiered,jitstress2_tiered'
+ scenarios:
+ asString: 'normal,no_tiered_compilation,jitstress1,jitstress2,jitstress1_tiered,jitstress2_tiered'
+ asArray:
+ - normal
+ - no_tiered_compilation
+ - jitstress1
+ - jitstress2
+ - jitstress1_tiered
+ - jitstress2_tiered
timeoutInMinutes: 480
#
@@ -179,7 +199,11 @@ jobs:
buildConfig: release
jobParameters:
priority: 1
- scenarios: 'normal,no_tiered_compilation'
+ scenarios:
+ asString: 'normal,no_tiered_compilation'
+ asArray:
+ - normal
+ - no_tiered_compilation
timeoutInMinutes: 360
# Pri1 crossgen (Official Build)
@@ -191,7 +215,11 @@ jobs:
jobParameters:
priority: 1
crossgen: true
- scenarios: 'normal,no_tiered_compilation'
+ scenarios:
+ asString: 'normal,no_tiered_compilation'
+ asArray:
+ - normal
+ - no_tiered_compilation
timeoutInMinutes: 360