summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorJarret Shook <jashoo@microsoft.com>2019-03-19 11:06:56 -0700
committerGitHub <noreply@github.com>2019-03-19 11:06:56 -0700
commit21075b3f0150084e341a7d37374de67c616b9870 (patch)
treea2221156f040f56a23add81b985d2d9cf0f28261 /netci.groovy
parent8497ae3ed438f443b22b00a66f42afe8f6623bbf (diff)
downloadcoreclr-21075b3f0150084e341a7d37374de67c616b9870.tar.gz
coreclr-21075b3f0150084e341a7d37374de67c616b9870.tar.bz2
coreclr-21075b3f0150084e341a7d37374de67c616b9870.zip
Disable Jenkins Innerloop Jobs (#23287)
* Disable Jenkins Innerloop Jobs This change will: 1) Remove default PR trigger jobs from being run in jenkins 2) Start submitting tests for linux arm32 in coreclr-ci It is worth noting that this change will not remove jobs from netci.groovy. This is to say that it is still possible to trigger innerloop and outerloop jobs in jenkins, they will just not be run automatically on each new PR. Past this point coreclr-ci will be the only PR triggered jobs to appear in Coreclr. To see test results, navigate to the coreclr-ci Azure Dev Ops page at: https://dev.azure.com/dnceng/public/_build?definitionId=228 and view the build related to your PR. There is a test tab which will report all test results. * Address PR feedback * Add queue to array syntax * Do not create push trigger jobs
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy46
1 files changed, 3 insertions, 43 deletions
diff --git a/netci.groovy b/netci.groovy
index 6ab04375fb..d9f42816e1 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -169,58 +169,17 @@ class Constants {
// Valid PR trigger combinations.
def static prTriggeredValidInnerLoopCombos = [
'Windows_NT': [
- 'x64': [
- 'Checked'
- ],
- 'x86': [
- 'Checked',
- 'Release'
- ],
'arm': [
- 'Debug',
'Checked'
],
'arm64': [
- 'Debug',
'Checked'
]
],
'Windows_NT_BuildOnly': [
- 'x64': [
- 'Checked',
- 'Release'
- ],
- 'x86': [
- 'Checked',
- 'Release'
- ],
'arm': [
'Checked'
],
- ],
- 'Ubuntu': [
- 'x64': [
- 'Checked'
- ],
- 'arm': [
- 'Checked'
- ]
- ],
- 'Ubuntu16.04': [
- 'arm64': [
- 'Checked'
- ]
- ],
- 'CentOS7.1': [
- 'x64': [
- 'Debug',
- 'Checked'
- ]
- ],
- 'OSX10.12': [
- 'x64': [
- 'Checked'
- ]
]
]
@@ -679,8 +638,9 @@ def static addPeriodicTriggerHelper(def job, String cronString, boolean alwaysRu
}
def static addGithubPushTriggerHelper(def job) {
- addToMergeView(job)
- Utilities.addGithubPushTrigger(job)
+ // Disable all Push trigger jobs. All jobs will need to be requested.
+ // addToMergeView(job)
+ // Utilities.addGithubPushTrigger(job)
}