authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-12-20 13:05:34-05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-12-20 14:18:02-05:00
log2a776ed8a8ff9220e316cb91fbfb49f23edee0d1
tree6527d6f8e4e1372393d4e3c15d7f039c9c835098
parent48406009889c0e77052b57bc0220a332d3ea5cbd
signature Commit is signed but in an unrecognized format.

ci: only run the debug behavior tests for FreeBSD


1 files changed, 10 insertions(+), 4 deletions(-)

.builds/freebsd.yml+10-4
...@@ -8,8 +8,14 @@ sources:...@@ -8,8 +8,14 @@ sources:
8tasks:8tasks:
9 - build: |9 - build: |
10 cd zig && mkdir build && cd build10 cd zig && mkdir build && cd build
11 cmake ..11 cmake .. -DCMAKE_BUILD_TYPE=Release
12 make && make install12 make -j$(sysctl -n hw.ncpu) install
13 - test: |13 - test: |
14 cd zig && cd build14 cd zig/build
15 ./bin/zig build --build-file ../build.zig test15 bin/zig test ../test/behavior.zig
16 # TODO enable all tests
17 #bin/zig build --build-file ../build.zig test
18 # TODO integrate with the download page updater and make a
19 # static build available to download for FreeBSD.
20 # This will require setting up a cache of LLVM/Clang built
21 # statically.