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 @@
11#!/bin/sh
22
33set -x
4set -e
45
56export CC=clang-5.0
67export CXX=clang++-5.0
7which $CC
8which $CXX
98echo $PATH
109mkdir build
1110cd build
......@@ -14,21 +13,11 @@ make VERBOSE=1
1413make install
1514./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
2016./zig test ../test/behavior.zig --target-os windows --target-arch i386 --target-environ msvc
2117wine 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
2619./zig test ../test/behavior.zig --target-os windows --target-arch i386 --target-environ msvc --release-fast
2720wine 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
3322./zig test ../test/behavior.zig --target-os windows --target-arch i386 --target-environ msvc --release-safe
3423wine test.exe