Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ellis <matell@microsoft.com>2016-06-07 03:41:40 +0300
committerMatt Ellis <matell@microsoft.com>2016-06-07 03:41:40 +0300
commitdf20dd46ac86a45befcc39f4464ac97ea4b80074 (patch)
tree0220f9fb5e3700f355fe7cf3a422b705b34a7233 /netci.groovy
parent51ab6a0a646334a08f6eee31b4c915f0db0c2457 (diff)
Fix some CI definitions
- We were not producing Fedora 23 inner loop runs after the refactoring of the scripts. - Due to a casing error, we were not running CentOS 7.1 legs per PR.
Diffstat (limited to 'netci.groovy')
-rw-r--r--netci.groovy4
1 files changed, 2 insertions, 2 deletions
diff --git a/netci.groovy b/netci.groovy
index 32efd61775..113e31665a 100644
--- a/netci.groovy
+++ b/netci.groovy
@@ -289,7 +289,7 @@ def osShortName = ['Windows 10': 'win10',
// **************************
[true, false].each { isPR ->
['Debug', 'Release'].each { configurationGroup ->
- ['Windows_NT', 'Ubuntu14.04', 'Ubuntu16.04', 'Debian8.4', 'CentOS7.1', 'OpenSUSE13.2', 'RHEL7.2', 'OSX'].each { os ->
+ ['Windows_NT', 'Ubuntu14.04', 'Ubuntu16.04', 'Debian8.4', 'CentOS7.1', 'OpenSUSE13.2', 'Fedora23', 'RHEL7.2', 'OSX'].each { os ->
def osGroup = osGroupMap[os]
def newJobName = "${os.toLowerCase()}_${configurationGroup.toLowerCase()}"
@@ -334,7 +334,7 @@ def osShortName = ['Windows 10': 'win10',
// Set up triggers
if (isPR) {
// Set PR trigger, we run Windows_NT, Ubuntu 14.04, CentOS 7.1 and OSX on every PR.
- if ( os == 'Windows_NT' || os == 'Ubuntu14.04' || os == 'Centos7.1' || os == 'OSX' ) {
+ if ( os == 'Windows_NT' || os == 'Ubuntu14.04' || os == 'CentOS7.1' || os == 'OSX' ) {
Utilities.addGithubPRTriggerForBranch(newJob, branch, "Innerloop ${os} ${configurationGroup} Build and Test")
}
else {