From 185eda9121ea45bfbd2a634f9561f224eb49471d Mon Sep 17 00:00:00 2001 From: Gleb Balykov Date: Wed, 3 Oct 2018 19:58:29 +0300 Subject: [PATCH] Revert "Disable Tizen leg on PRs (dotnet/corefx#30715)" (dotnet/corefx#31697) This reverts commit dotnet/corefx@6315a412b5489951a5fc3895121d99ce48bd52c8. Commit migrated from https://github.com/dotnet/corefx/commit/cc6aa17cbe21deef23588ce63ab2b365b6cda651 --- src/libraries/netci.groovy | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libraries/netci.groovy b/src/libraries/netci.groovy index d54f075..1826c5b 100644 --- a/src/libraries/netci.groovy +++ b/src/libraries/netci.groovy @@ -329,8 +329,7 @@ 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") || // TODO: Re-enable Tizen once build is fixed - (osName == "Linux" && configurationGroup == "Release")) { + if ((osName == "Tizen" && configurationGroup == "Debug") || (osName == "Linux" && configurationGroup == "Release")) { Utilities.addGithubPRTriggerForBranch(newJob, branch, "${osName} ${abi} ${configurationGroup} Build") } else { -- 2.7.4