We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 986c4aa commit 9714bb8Copy full SHA for 9714bb8
.travis.yml
@@ -6,7 +6,6 @@ matrix:
6
- env: TARGET=aarch64-unknown-linux-gnu
7
os: linux
8
dist: trusty
9
- sudo: required
10
addons:
11
apt:
12
packages:
@@ -52,6 +51,15 @@ matrix:
52
51
os: osx
53
- env: TARGET=x86_64-unknown-linux-gnu
54
+ - env: TARGET=x86_64-pc-windows-gnu
55
+ os: linux
56
+ dist: trusty
57
+ sudo: required
58
+ addons:
59
+ apt:
60
+ packages:
61
+ - gcc-mingw-w64
62
+ - wine
63
allow_failures:
64
# FIXME(#2)
65
- env: TARGET=armv7-unknown-linux-gnueabihf
ci/env.sh
@@ -24,4 +24,7 @@ case $TARGET in
24
export PREFIX=arm-linux-gnueabihf-
25
export QEMU_LD_PREFIX=/usr/arm-linux-gnueabihf
26
;;
27
+ x86_64-pc-windows-gnu)
28
+ export PREFIX=x86_64-w64-mingw32-
29
+ ;;
30
esac
0 commit comments