diff options
author | Tobias Brunner <tobias@strongswan.org> | 2016-09-20 14:30:22 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2016-09-20 15:33:01 +0200 |
commit | 39d544d56e9b10db68788cf2fce64a77d96cf14e (patch) | |
tree | bf4c8473a92da7bc384f8c0ee135478bf56dc6fb /scripts | |
parent | 003fec52e08208cfcfd9316752fa1ba2609c955a (diff) | |
download | strongswan-39d544d56e9b10db68788cf2fce64a77d96cf14e.tar.bz2 strongswan-39d544d56e9b10db68788cf2fce64a77d96cf14e.tar.xz |
travis: Run 32-bit Windows build on precise (12.04) image
That's required due to a bug in MinGW 3.1.0 that's shipped with trusty.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/test.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/test.sh b/scripts/test.sh index 595fa5f0e..a91086422 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -72,7 +72,8 @@ win*) ;; win32) CONFIG="--host=i686-w64-mingw32 $CONFIG" - DEPS="gcc-mingw-w64-i686 binutils-mingw-w64-i686 mingw-w64-i686-dev $DEPS" + # currently only works on 12.04, so use mingw-w64-dev instead of mingw-w64-i686-dev + DEPS="gcc-mingw-w64-i686 binutils-mingw-w64-i686 mingw-w64-dev $DEPS" CC="i686-w64-mingw32-gcc" ;; esac |