Disable Tizen leg from PRs while move to the new system (dotnet/corefx#34533)
authorSantiago Fernandez Madero <safern@microsoft.com>
Fri, 11 Jan 2019 00:47:20 +0000 (16:47 -0800)
committerGitHub <noreply@github.com>
Fri, 11 Jan 2019 00:47:20 +0000 (16:47 -0800)
Commit migrated from https://github.com/dotnet/corefx/commit/01fd0c22869c67bbf8f722db2c64ae71bbbbc456

src/libraries/netci.groovy

index 518ec3f..59708b9 100644 (file)
@@ -277,15 +277,11 @@ def targetGroupOsMapInnerloop = ['netcoreapp': ['Windows_NT', 'Ubuntu14.04', 'Ub
 [true, false].each { isPR ->
     ['netcoreapp'].each { targetGroup ->
         ['Debug', 'Release'].each { configurationGroup ->
-            ['Linux', 'Tizen'].each { osName ->
+            ['Linux'].each { osName ->
                 if (osName == "Linux") {
                     linuxCodeName="xenial"
                     abi = "arm"
                 }
-                else if (osName == "Tizen") {
-                    linuxCodeName="tizen"
-                    abi = "armel"
-                }
 
                 def osGroup = "Linux"
                 def newJobName = "${osName.toLowerCase()}_${abi.toLowerCase()}_cross_${configurationGroup.toLowerCase()}"
@@ -322,8 +318,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")) {
+                    // We run Linux Release as default PR builds
+                    if (osName == "Linux" && configurationGroup == "Release") {
                         Utilities.addGithubPRTriggerForBranch(newJob, branch, "${osName} ${abi} ${configurationGroup} Build")
                     }
                     else {