From: Hyeongseok Oh Date: Wed, 12 Apr 2017 01:54:52 +0000 (+0900) Subject: Fix CI tizen build error (dotnet/coreclr#10909) X-Git-Tag: submit/tizen/20210909.063632~11030^2~7299 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5fb5f7afeb8ba488563000f3c2d6197117e1bc50;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Fix CI tizen build error (dotnet/coreclr#10909) Fix CI tizen build error caused by chmod Commit migrated from https://github.com/dotnet/coreclr/commit/737ae7288bfd1537525b76b01edf21cba868fa9c --- diff --git a/src/coreclr/netci.groovy b/src/coreclr/netci.groovy index 87083a6..05e5d7f 100755 --- a/src/coreclr/netci.groovy +++ b/src/coreclr/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 \\