mirror of
https://github.com/ziglang/zig.git
synced 2025-12-15 02:33:07 +00:00
17 lines
320 B
Bash
Executable File
17 lines
320 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
set -e
|
|
|
|
INSTALL_PREFIX="$DRONE_WORKSPACE/stage3-release"
|
|
ZIG="$INSTALL_PREFIX/bin/zig"
|
|
export ZIG_GLOBAL_CACHE_DIR="$DRONE_WORKSPACE/zig-cache"
|
|
|
|
$ZIG build test-std \
|
|
--zig-lib-dir lib \
|
|
-Dskip-debug \
|
|
-Dskip-release-fast \
|
|
-Dskip-release-small \
|
|
-Dskip-non-native \
|
|
-Dskip-single-threaded
|