1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-10 18:11:04 +09:00

Disable Tizen leg on PRs (dotnet/corefx#30715)

It's failing with an updated coreclr:
https://github.com/dotnet/corefx/pull/30662#issuecomment-400695140

Commit migrated from 6315a412b5
This commit is contained in:
Stephen Toub 2018-06-28 09:18:53 -04:00 committed by GitHub
parent f4b4b59a24
commit 06d112558e

View 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") || // TODO: Re-enable Tizen once build is fixed
(osName == "Linux" && configurationGroup == "Release")) {
Utilities.addGithubPRTriggerForBranch(newJob, branch, "${osName} ${abi} ${configurationGroup} Build")
}
else {