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:
authorStephen Toub <stoub@microsoft.com>2016-02-12 18:42:33 +0300
committerStephen Toub <stoub@microsoft.com>2016-02-12 18:42:33 +0300
commit2f8b7e92686eaf5dda59ac3268ed12951f8bfe73 (patch)
tree39a6531f63a45f8220244ad1a82f28e15c61be95 /netci.groovy
parent877b98ff5aad69a9e04c29234f4305b47d547553 (diff)
Temporarily disable OpenSUSE PR legs
#6070 cc: @ellismg, @mmitche
Diffstat (limited to 'netci.groovy')
-rw-r--r--netci.groovy7
1 files changed, 5 insertions, 2 deletions
diff --git a/netci.groovy b/netci.groovy
index c5fbdf9f75..4c46841a37 100644
--- a/netci.groovy
+++ b/netci.groovy
@@ -353,7 +353,10 @@ branchList.each { branchName ->
// Set PR trigger.
// Set of OS's that work currently.
if (os in ['OSX', 'Ubuntu', 'OpenSUSE13.2', 'CentOS7.1']) {
- Utilities.addGithubPRTrigger(newFlowJob, "Innerloop ${os} ${configurationGroup} Build and Test")
+ // TODO #6070: Temporarily disabled due to failing globalization tests on OpenSUSE.
+ if (os != 'OpenSUSE13.2') {
+ Utilities.addGithubPRTrigger(newFlowJob, "Innerloop ${os} ${configurationGroup} Build and Test")
+ }
}
else {
Utilities.addGithubPRTrigger(newFlowJob, "Innerloop ${os} ${configurationGroup} Build and Test", "(?i).*test\\W+${os}.*")
@@ -403,4 +406,4 @@ branchList.each { branchName ->
}
}
}
-} \ No newline at end of file
+}