summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorHyeongseok Oh <hseok82.oh@samsung.com>2017-04-12 10:54:52 +0900
committerJan Kotas <jkotas@microsoft.com>2017-04-11 18:54:52 -0700
commit737ae7288bfd1537525b76b01edf21cba868fa9c (patch)
treef08a65d79358fb431036ee0f8c31bfc0acb64f81 /netci.groovy
parentdcc8141160f4145e3feb6b2dac3b6f67042ecf92 (diff)
downloadcoreclr-737ae7288bfd1537525b76b01edf21cba868fa9c.tar.gz
coreclr-737ae7288bfd1537525b76b01edf21cba868fa9c.tar.bz2
coreclr-737ae7288bfd1537525b76b01edf21cba868fa9c.zip
Fix CI tizen build error (#10909)
Fix CI tizen build error caused by chmod
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy4
1 files changed, 3 insertions, 1 deletions
diff --git a/netci.groovy b/netci.groovy
index 87083a6a50..05e5d7fa7d 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1637,7 +1637,9 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
// Unpack the corefx binaries
buildCommands += "mkdir ./bin/CoreFxBinDir"
buildCommands += "tar -xf ./bin/build.tar.gz -C ./bin/CoreFxBinDir"
- buildCommands += "chmod a+x ./bin/CoreFxBinDir/corerun"
+ if (os != 'Tizen') {
+ buildCommands += "chmod a+x ./bin/CoreFxBinDir/corerun"
+ }
// Call the ARM CI script to cross build and test using docker
buildCommands += """./tests/scripts/arm32_ci_script.sh \\