continuous-build.sh: restore toolchain chain

This commit is contained in:
Giacomo Tesio 2017-01-06 18:37:32 +01:00
parent f43f95265d
commit 8649dcc9b6
1 changed files with 4 additions and 4 deletions

View File

@ -38,10 +38,11 @@ if [ "${COVERITY_SCAN_BRANCH}" != 1 ]; then
build all
if [ "$CHECK_QA" != "" ]; then
if [ "$TRAVIS_BUILD_DIR" != "" ]; then
echo "Run QA checks"
echo /qa/check | NCPU=2 KERNEL=workhorse.32bit KERNDIR=$JEHANNE/hacking/bin/ runqemu
if [ "$QA_CHECKS" != "" ]; then
echo "Run QA checks"
echo /qa/check | NCPU=2 KERNEL=workhorse.32bit KERNDIR=$JEHANNE/hacking/bin/ runqemu
fi
echo "Move cross-compiling toolchain to $JEHANNE/tmp/toolchain for Travis caches"
if [ ! -d "$JEHANNE/tmp/toolchain" ]; then
@ -49,5 +50,4 @@ if [ "${COVERITY_SCAN_BRANCH}" != 1 ]; then
fi
mv $JEHANNE/hacking/cross/toolchain/* $JEHANNE/tmp/toolchain/
fi
fi
fi