From 3edc806824dd4625f6b41fd5895b51ec235a07a6 Mon Sep 17 00:00:00 2001 From: Ian Hays Date: Fri, 6 Apr 2018 15:13:12 -0700 Subject: [PATCH] Disable Tizen from CI Commit migrated from https://github.com/dotnet/core-setup/commit/33e132fd0ee948cdd7881e3b398ea5c3e37a99aa --- src/installer/netci.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installer/netci.groovy b/src/installer/netci.groovy index 4029595..ef734cf 100644 --- a/src/installer/netci.groovy +++ b/src/installer/netci.groovy @@ -10,7 +10,7 @@ def project = GithubProject def branch = GithubBranchName def isPR = true -def platformList = ['Linux:x64:Release', 'Linux:arm:Release', 'Linux:arm64:Release', 'OSX:x64:Release', 'Windows_NT:x64:Release', 'Windows_NT:x86:Debug', 'Windows_NT:arm:Debug', 'Tizen:armel:Release'] +def platformList = ['Linux:x64:Release', 'Linux:arm:Release', 'Linux:arm64:Release', 'OSX:x64:Release', 'Windows_NT:x64:Release', 'Windows_NT:x86:Debug', 'Windows_NT:arm:Debug', /*'Tizen:armel:Release'*/] // Disable Tizen except when explicitly requested. See corefx/issues/28901 def static getBuildJobName(def configuration, def os, def architecture) { return configuration.toLowerCase() + '_' + os.toLowerCase() + '_' + architecture.toLowerCase() -- 2.7.4