Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHyung-Kyu Choi <hk0110.choi@samsung.com>2017-10-10 16:56:49 +0300
committerStephen Toub <stoub@microsoft.com>2017-10-10 16:56:49 +0300
commitc2ef4daa8513c924615e6c7852e83d8950e7bb75 (patch)
tree0c41b7e8b46137267133bc0fbb36579c0a862704 /netci.groovy
parent743973e8ed59268d6cd7935424a0d45b504b62eb (diff)
Enable Tizen leg for PRs (#24544)
Signed-off-by: Hyung-Kyu Choi <hk0110.choi@samsung.com>
Diffstat (limited to 'netci.groovy')
-rw-r--r--netci.groovy3
1 files changed, 1 insertions, 2 deletions
diff --git a/netci.groovy b/netci.groovy
index 5013ce6994..c741fcf3d4 100644
--- a/netci.groovy
+++ b/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") || // Temporarily disable Tizen leg on PRs until break is fixed
- (osName == "Linux" && configurationGroup == "Release") ) {
+ if ((osName == "Tizen" && configurationGroup == "Debug") || (osName == "Linux" && configurationGroup == "Release")) {
Utilities.addGithubPRTriggerForBranch(newJob, branch, "${osName} ${abi} ${configurationGroup} Build")
}
else {