summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorHyung-Kyu Choi <hqueue@users.noreply.github.com>2017-02-26 04:24:16 +0900
committerJan Kotas <jkotas@microsoft.com>2017-02-25 11:24:16 -0800
commit55382c594f7e1195b6fbff930bea6e1521495e07 (patch)
tree66d084fd89b00e4c103da732f716f02e91f71dd9 /netci.groovy
parent318289269dc8e9ad48d6a8dff6a395d86759bb37 (diff)
downloadcoreclr-55382c594f7e1195b6fbff930bea6e1521495e07.tar.gz
coreclr-55382c594f7e1195b6fbff930bea6e1521495e07.tar.bz2
coreclr-55382c594f7e1195b6fbff930bea6e1521495e07.zip
[ARM/CI] Fix arm32 CI git check failure (#9798)
Because layout in corefx binary has been changed, it causes arm CI failure. And skip arm32 tests because test is not working recently. Signed-off-by: Hyung-Kyu Choi <hk0110.choi@samsung.com>
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy3
1 files changed, 2 insertions, 1 deletions
diff --git a/netci.groovy b/netci.groovy
index 5d9ec77248..d1ca4b6984 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -2169,7 +2169,8 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
buildCommands += "unzip -q -o ./bin/tests/tests.zip -d ./bin/tests/Windows_NT.x64.${configuration} || exit 0"
// Unpack the corefx binaries
- buildCommands += "tar -xf ./bin/build.tar.gz"
+ buildCommands += "mkdir ./bin/CoreFxBinDir"
+ buildCommands += "tar -xf ./bin/build.tar.gz -C ./bin/CoreFxBinDir"
// Call the ARM emulator build script to cross build and test using the ARM emulator rootfs
buildCommands += """./tests/scripts/arm32_ci_script.sh \\