authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-10-01 11:50:53-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-10-01 11:50:53-04:00
loga458ec9998159dcfcbb013c6202bdd123969dfaf
tree37d7f6bf5dc265714b8388da465771af211787ad
parentc42f7309b695a46b1718c97e79e9015311245270

travis: older wine only works with i386 builds


1 files changed, 1 insertions(+), 12 deletions(-)

ci/travis_linux_script+1-12
...@@ -1,11 +1,10 @@...@@ -1,11 +1,10 @@
1#!/bin/sh1#!/bin/sh
22
3set -x3set -x
4set -e
45
5export CC=clang-5.06export CC=clang-5.0
6export CXX=clang++-5.07export CXX=clang++-5.0
7which $CC
8which $CXX
9echo $PATH8echo $PATH
10mkdir build9mkdir build
11cd build10cd build
...@@ -14,21 +13,11 @@ make VERBOSE=1...@@ -14,21 +13,11 @@ make VERBOSE=1
14make install13make install
15./zig build --build-file ../build.zig test14./zig build --build-file ../build.zig test
1615
17./zig test ../test/behavior.zig --target-os windows --target-arch x86_64 --target-environ msvc
18wine64 test.exe
19
20./zig test ../test/behavior.zig --target-os windows --target-arch i386 --target-environ msvc16./zig test ../test/behavior.zig --target-os windows --target-arch i386 --target-environ msvc
21wine test.exe17wine test.exe
2218
23./zig test ../test/behavior.zig --target-os windows --target-arch x86_64 --target-environ msvc --release-fast
24wine64 test.exe
25
26./zig test ../test/behavior.zig --target-os windows --target-arch i386 --target-environ msvc --release-fast19./zig test ../test/behavior.zig --target-os windows --target-arch i386 --target-environ msvc --release-fast
27wine test.exe20wine test.exe
2821
29# TODO fix bug
30# ./zig test ../test/behavior.zig --target-os windows --target-arch x86_64 --target-environ msvc --release-safe
31# wine64 test.exe
32
33./zig test ../test/behavior.zig --target-os windows --target-arch i386 --target-environ msvc --release-safe22./zig test ../test/behavior.zig --target-os windows --target-arch i386 --target-environ msvc --release-safe
34wine test.exe23wine test.exe