Temporarily disable failing Tizen CI leg
authorJosh Free <joshfree@users.noreply.github.com>
Mon, 6 Aug 2018 22:58:12 +0000 (15:58 -0700)
committerJosh Free <joshfree@users.noreply.github.com>
Tue, 7 Aug 2018 16:51:18 +0000 (09:51 -0700)
Fixes https://github.com/dotnet/core-setup/issues/4408

Re-enabling tracked by https://github.com/dotnet/corefx/issues/28901

/cc @hqueue @alpencolt @gbalykov

Commit migrated from https://github.com/dotnet/core-setup/commit/e47ecfbf7895f844e840ef9b74eb19e8d3258749

src/installer/netci.groovy

index 567f269..9d61f71 100644 (file)
@@ -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'] // TODO: Re-enable Tizen once build is fixed. , 'Tizen:armel:Release']
 
 def static getBuildJobName(def configuration, def os, def architecture) {
     return configuration.toLowerCase() + '_' + os.toLowerCase() + '_' + architecture.toLowerCase()