From 5fb5f7afeb8ba488563000f3c2d6197117e1bc50 Mon Sep 17 00:00:00 2001 From: Hyeongseok Oh Date: Wed, 12 Apr 2017 10:54:52 +0900 Subject: [PATCH] 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 --- src/coreclr/netci.groovy | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 \\ -- 2.7.4