Permalink
Browse files

[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 <[email protected]>
  • Loading branch information...
1 parent 3182892 commit 55382c594f7e1195b6fbff930bea6e1521495e07 @hqueue hqueue committed with jkotas Feb 25, 2017
Showing with 4 additions and 2 deletions.
  1. +2 −1 netci.groovy
  2. +2 −1 tests/scripts/arm32_ci_script.sh
View
@@ -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 \\
@@ -302,7 +302,8 @@ __ARMEmulRootfs=/mnt/arm-emulator-rootfs
__ARMEmulPath=
__ARMRootfsMountPath=
__buildConfig=
-__skipTests=0
+# TODO: Currently test is not working correctly for a month. This will be fixed with new arm CI soon.
+__skipTests=1
__skipMscorlib=
__testRootDir=
__mscorlibDir=

0 comments on commit 55382c5

Please sign in to comment.