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:
authorIan Hays <ianha@microsoft.com>2018-04-07 01:06:01 +0300
committerIan Hays <ianha@microsoft.com>2018-04-07 01:18:37 +0300
commit37774fd4ee68b2f9dfb5509301893e76e7e3bd5f (patch)
tree1f08d32075f4e57eda0221e8339a650ecfa4bf08
parent11a57828a59479532153b4f8c67aaaeb68eb7d79 (diff)
Disable Tizen CI runs
Still allows them to be run when explicitly requested, but they will no longer be run per-pr or on push
-rw-r--r--netci.groovy29
1 files changed, 19 insertions, 10 deletions
diff --git a/netci.groovy b/netci.groovy
index c741fcf3d4..d07ef1b78d 100644
--- a/netci.groovy
+++ b/netci.groovy
@@ -326,19 +326,28 @@ def targetGroupOsMapInnerloop = ['netcoreapp': ['Windows_NT', 'Ubuntu14.04', 'Ub
}
}
- // Set up triggers
- if (isPR) {
- // We run Tizen Debug and Linux Release as default PR builds
- if ((osName == "Tizen" && configurationGroup == "Debug") || (osName == "Linux" && configurationGroup == "Release")) {
- Utilities.addGithubPRTriggerForBranch(newJob, branch, "${osName} ${abi} ${configurationGroup} Build")
- }
- else {
+ // Disable Tizen except when explicitly requested. See corefx/issues/28901
+ if (osName == "Tizen") {
+ if (isPR) {
Utilities.addGithubPRTriggerForBranch(newJob, branch, "${osName} ${abi} ${configurationGroup} Build", "(?i).*test\\W+${osName}\\W+${abi}\\W+${configurationGroup}.*")
}
}
- else {
- // Set a push trigger
- Utilities.addGithubPushTrigger(newJob)
+ else
+ {
+ // Set up triggers
+ if (isPR) {
+ // We run Tizen Debug and Linux Release as default PR builds
+ if ((osName == "Tizen" && configurationGroup == "Debug") || (osName == "Linux" && configurationGroup == "Release")) {
+ Utilities.addGithubPRTriggerForBranch(newJob, branch, "${osName} ${abi} ${configurationGroup} Build")
+ }
+ else {
+ Utilities.addGithubPRTriggerForBranch(newJob, branch, "${osName} ${abi} ${configurationGroup} Build", "(?i).*test\\W+${osName}\\W+${abi}\\W+${configurationGroup}.*")
+ }
+ }
+ else {
+ // Set a push trigger
+ Utilities.addGithubPushTrigger(newJob)
+ }
}
} // osName
} // configurationGroup