Enable Windows testing under travis

This commit is contained in:
Philipp Oppermann
2018-10-17 14:46:21 +02:00
parent a1dd6b2484
commit 15c3925b1e

View File

@@ -18,6 +18,7 @@ rust:
os: os:
- linux - linux
- osx - osx
- windows
cache: cache:
cargo: true cargo: true
@@ -31,6 +32,7 @@ addons:
install: install:
- if [ $TRAVIS_OS_NAME = osx ]; then brew update; brew install qemu; fi - 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
before_script: before_script:
- rustup component add rust-src - rustup component add rust-src