| ... | @@ -9,24 +9,8 @@ echo $PATH | ... | @@ -9,24 +9,8 @@ echo $PATH |
| 9 | mkdir build | 9 | mkdir build |
| 10 | cd build | 10 | cd build |
| 11 | cmake .. -DCMAKE_INSTALL_PREFIX=$(pwd) | 11 | cmake .. -DCMAKE_INSTALL_PREFIX=$(pwd) |
| 12 | make VERBOSE=1 | 12 | make -j2 install |
| 13 | make install | | |
| 14 | ./zig build --build-file ../build.zig test | 13 | ./zig build --build-file ../build.zig test |
| 15 | | 14 | |
| 16 | ./zig test ../test/behavior.zig --target-os windows --target-arch i386 --target-environ msvc | 15 | mkdir $TRAVIS_BUILD_DIR/artifacts |
| 17 | wine zig-cache/test.exe | 16 | docker run -it --mount type=bind,source="$TRAVIS_BUILD_DIR/artifacts",target=/z ziglang/static-base:llvm6-1 -j2 $TRAVIS_COMMIT |
| 18 | | | |
| 19 | ./zig test ../test/behavior.zig --target-os windows --target-arch i386 --target-environ msvc --release-fast | | |
| 20 | wine zig-cache/test.exe | | |
| 21 | | | |
| 22 | ./zig test ../test/behavior.zig --target-os windows --target-arch i386 --target-environ msvc --release-safe | | |
| 23 | wine zig-cache/test.exe | | |
| 24 | | | |
| 25 | ./zig test ../test/behavior.zig --target-os windows --target-arch x86_64 --target-environ msvc | | |
| 26 | wine64 zig-cache/test.exe | | |
| 27 | | | |
| 28 | #./zig test ../test/behavior.zig --target-os windows --target-arch x86_64 --target-environ msvc --release-fast | | |
| 29 | #wine64 test.exe | | |
| 30 | # | | |
| 31 | #./zig test ../test/behavior.zig --target-os windows --target-arch x86_64 --target-environ msvc --release-safe | | |
| 32 | #wine64 test.exe | | |