summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorEgor Chesakov <Egor.Chesakov@microsoft.com>2019-01-18 14:05:29 -0800
committerGitHub <noreply@github.com>2019-01-18 14:05:29 -0800
commit87fb9af12afb29087a818bd588037996a97bf000 (patch)
tree91843392898b77f2fe8423019a20f0cb3f237f7d /netci.groovy
parent0684f9241dd9886c2e3d53383fbeb27d31e604f0 (diff)
downloadcoreclr-87fb9af12afb29087a818bd588037996a97bf000.tar.gz
coreclr-87fb9af12afb29087a818bd588037996a97bf000.tar.bz2
coreclr-87fb9af12afb29087a818bd588037996a97bf000.zip
Run Azure DevOps builds against pull requests in coreclr/master (#22051)
And disable Windows_NT and Ubuntu arm32 and arm64 default triggers in Jenkins CI
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy24
1 files changed, 5 insertions, 19 deletions
diff --git a/netci.groovy b/netci.groovy
index b1c19a3cd4..14b9ef5b06 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1923,18 +1923,10 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
break
}
- switch (scenario) {
- case 'innerloop':
- case 'no_tiered_compilation_innerloop':
- if (configuration == 'Checked') {
- isDefaultTrigger = true
- }
- break
- case 'crossgen_comparison':
- if (os == 'Ubuntu' && architecture == 'arm' && (configuration == 'Checked' || configuration == 'Release')) {
- isDefaultTrigger = true
- }
- break
+ if (scenario == 'crossgen_comparison') {
+ if (os == 'Ubuntu' && architecture == 'arm' && (configuration == 'Checked' || configuration == 'Release')) {
+ isDefaultTrigger = true
+ }
}
break
@@ -1951,13 +1943,7 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
switch (scenario) {
case 'innerloop':
- if (configuration == 'Debug') {
- // Add default PR trigger for Windows arm64 Debug builds. This is a build only -- no tests are run --
- // so the private test hardware is not used. Thus, it can be run by all users, not just arm64Users.
- // People in arm64Users will get both this and the Checked Build and Test job.
- isDefaultTrigger = true
- } else if (configuration == 'Checked') {
- isDefaultTrigger = true
+ if (configuration == 'Checked') {
isArm64PrivateJob = true
}
break