summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorEgor Chesakov <Egor.Chesakov@microsoft.com>2019-02-05 12:04:40 -0800
committerGitHub <noreply@github.com>2019-02-05 12:04:40 -0800
commit658e017cb3d1ca2938b41493fa54df6126f4463c (patch)
tree491610ccae7468149d516b07d70d45b903af3bf9 /netci.groovy
parent0455657252ed103e5e2ee5bf4fd537aaa647a34b (diff)
downloadcoreclr-658e017cb3d1ca2938b41493fa54df6126f4463c.tar.gz
coreclr-658e017cb3d1ca2938b41493fa54df6126f4463c.tar.bz2
coreclr-658e017cb3d1ca2938b41493fa54df6126f4463c.zip
Use Jenkins for Linux/arm32 testing (#22429)
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy17
1 files changed, 13 insertions, 4 deletions
diff --git a/netci.groovy b/netci.groovy
index 00d42d14c3..75089c60cd 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1928,10 +1928,19 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
needsTrigger = false
break
}
-
- if (scenario == 'crossgen_comparison') {
- if (os == 'Ubuntu' && architecture == 'arm' && (configuration == 'Checked' || configuration == 'Release')) {
- isDefaultTrigger = true
+ if (os == 'Ubuntu' && architecture == 'arm') {
+ switch (scenario) {
+ case 'innerloop':
+ case 'no_tiered_compilation_innerloop':
+ if (configuration == 'Checked') {
+ isDefaultTrigger = true
+ }
+ break
+ case 'crossgen_comparison':
+ if (configuration == 'Checked' || configuration == 'Release') {
+ isDefaultTrigger = true
+ }
+ break
}
}
break