don't skip install phase inside docker

master
Jorge Aparicio 2016-08-08 21:14:04 -05:00
parent cc0f2acf76
commit 66d3efdce3
2 changed files with 3 additions and 2 deletions

View File

@ -62,7 +62,7 @@ EOF
}
main() {
if [[ -z $DOCKER ]]; then
if [[ ${DOCKER:-n} != "y" ]]; then
install_qemu
install_binutils
install_c_toolchain

View File

@ -39,7 +39,8 @@ main() {
-e TRAVIS_OS_NAME=$TRAVIS_OS_NAME \
-v $(pwd):/mnt \
ubuntu:16.04 \
sh -c 'cd /mnt;
sh -c 'set -ex;
cd /mnt;
export PATH="$PATH:$HOME/.cargo/bin";
bash ci/install.sh;
bash ci/script.sh'