mirror of
https://github.com/ziglang/zig.git
synced 2026-01-06 21:43:25 +00:00
It makes sense to test release mode, plus we're up against the time limits of CI, so this should make room.
13 lines
198 B
Bash
Executable File
13 lines
198 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
set -e
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake .. -DCMAKE_PREFIX_PATH=/usr/local/opt/llvm@6/ -DCMAKE_BUILD_TYPE=Release
|
|
make VERBOSE=1
|
|
make install
|
|
|
|
./zig build --build-file ../build.zig test
|