Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 0b6bbb0

Browse files
authored
Merge pull request #10886 from hseok-oh/ci/fix_ci_error
Fix CI test error: permission error
2 parents 2030aff + b974392 commit 0b6bbb0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

netci.groovy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1637,6 +1637,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
16371637
// Unpack the corefx binaries
16381638
buildCommands += "mkdir ./bin/CoreFxBinDir"
16391639
buildCommands += "tar -xf ./bin/build.tar.gz -C ./bin/CoreFxBinDir"
1640+
buildCommands += "chmod a+x ./bin/CoreFxBinDir/corerun"
16401641

16411642
// Call the ARM CI script to cross build and test using docker
16421643
buildCommands += """./tests/scripts/arm32_ci_script.sh \\

tests/runtest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ function create_core_overlay {
354354
mkdir "$coreOverlayDir"
355355

356356
cp -f -v "$coreFxBinDir/"* "$coreOverlayDir/" 2>/dev/null
357-
cp -f -v "$coreClrBinDir/"* "$coreOverlayDir/" 2>/dev/null
357+
cp -f -p -v "$coreClrBinDir/"* "$coreOverlayDir/" 2>/dev/null
358358
if [ -d "$mscorlibDir/bin" ]; then
359359
cp -f -v "$mscorlibDir/bin/"* "$coreOverlayDir/" 2>/dev/null
360360
fi

0 commit comments

Comments
 (0)