Skip to content

Commit

Permalink
Revert "Disable Tizen leg on PRs (dotnet/corefx#30715)" (dotnet/coref…
Browse files Browse the repository at this point in the history
…x#31697)

This reverts commit dotnet/corefx@6315a41.

Commit migrated from dotnet/corefx@cc6aa17
  • Loading branch information
gbalykov authored and karelz committed Oct 3, 2018
1 parent f4e3f42 commit 185eda9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/libraries/netci.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 185eda9

Please sign in to comment.