Merge pull request #503 from phil-opp/travis_update

Update qemu installation in travis script
This commit is contained in:
Philipp Oppermann
2018-11-25 13:51:11 +01:00
committed by GitHub

View File

@@ -33,10 +33,12 @@ addons:
apt:
packages:
- qemu-system-x86
homebrew:
packages:
- qemu
install:
- if [ $TRAVIS_OS_NAME = osx ]; then brew update; brew install qemu; fi
- if [ $TRAVIS_OS_NAME = windows ]; then wget https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180801.exe; 7z x qemu-w64-setup-20180801.exe; fi
- if [ $TRAVIS_OS_NAME = windows ]; then choco install qemu; export PATH="/c/Program Files/qemu:$PATH"; fi
before_script:
- rustup component add rust-src