From ebf47ad03dd8d7182d0036216f2f9814a9332465 Mon Sep 17 00:00:00 2001 From: Hyeongseok Oh Date: Tue, 11 Apr 2017 17:08:43 +0900 Subject: [PATCH] Remove sudo in netci.groovy Commit migrated from https://github.com/dotnet/coreclr/commit/b974392aa1fc93494ab83b3ace370dbbf4a336e0 --- src/coreclr/netci.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/netci.groovy b/src/coreclr/netci.groovy index c5f17c4..87083a6 100755 --- a/src/coreclr/netci.groovy +++ b/src/coreclr/netci.groovy @@ -1637,7 +1637,7 @@ 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 += "sudo chmod a+x ./bin/CoreFxBinDir/corerun" + 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