@ -1,5 +1,7 @@
sudo : false
sudo : false
dist : xenial
language : rust
language : rust
rust : nightly-2019-01-01
rust : nightly-2019-01-01
@ -12,11 +14,9 @@ cache:
cargo : true
cargo : true
directories:
directories:
- $HOME/Library/Caches/Homebrew
- $HOME/Library/Caches/Homebrew
- $TRAVIS_BUILD_DIR/qemu-3.1.0
addons:
addons:
apt:
packages:
- qemu
homebrew:
homebrew:
packages:
packages:
- qemu
- qemu
@ -48,7 +48,10 @@ install:
brew install aarch64-none-elf;
brew install aarch64-none-elf;
fi;
fi;
fi
fi
- if [ $TRAVIS_OS_NAME = linux ]; then
wget https://download.qemu.org/qemu-3.1.0.tar.xz && tar xvJf qemu-3.1.0.tar.xz > /dev/null && cd qemu-3.1.0 && ./configure --target-list=$ARCH-softmmu && make && cd ..;
export PATH=$PATH:$PWD/qemu-3.1.0/$ARCH-softmmu;
fi
before_script:
before_script:
- rustup component add rust-src
- rustup component add rust-src