mirror of
https://github.com/ziglang/zig.git
synced 2025-12-17 03:33:06 +00:00
11 lines
230 B
Bash
Executable File
11 lines
230 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 docs --zig-lib-dir lib
|