Disable Tizen leg for PRs
authorStephen Toub <stoub@microsoft.com>
Mon, 2 Oct 2017 19:23:19 +0000 (15:23 -0400)
committerGitHub <noreply@github.com>
Mon, 2 Oct 2017 19:23:19 +0000 (15:23 -0400)
Commit migrated from https://github.com/dotnet/corefx/commit/570a91f9316a9fbab170aa83752ee5ccde7c2341

src/libraries/netci.groovy

index 456d013..5013ce6 100644 (file)
@@ -329,7 +329,8 @@ 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") ) {
+                    if (//(osName == "Tizen" && configurationGroup == "Debug") || // Temporarily disable Tizen leg on PRs until break is fixed
+                        (osName == "Linux" && configurationGroup == "Release") ) {
                         Utilities.addGithubPRTriggerForBranch(newJob, branch, "${osName} ${abi} ${configurationGroup} Build")
                     }
                     else {