mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-14 05:36:17 +01:00
15 lines
300 B
Bash
Executable file
15 lines
300 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-release-safe \
|
|
-Dskip-release-fast \
|
|
-Dskip-release-small \
|
|
-Dskip-non-native
|