authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-08-10 18:00:24-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-08-19 16:45:15-07:00
logd75d40dfdfeb82dc9b1b2b5cdcd3fdb8105ac97d
tree587400a679d4ca52ccc2dc09674be0169376a42b
parent7346600517f5902316e5b8c179d8120b7854a5e1

build: make docs a separate step than test


3 files changed, 2 insertions(+), 3 deletions(-)

build.zig-1
...@@ -527,7 +527,6 @@ pub fn build(b: *Builder) !void {...@@ -527,7 +527,6 @@ pub fn build(b: *Builder) !void {
527 const test_step = b.step("test", "Run all the tests");527 const test_step = b.step("test", "Run all the tests");
528 test_step.dependOn(toolchain_step);528 test_step.dependOn(toolchain_step);
529 test_step.dependOn(std_step);529 test_step.dependOn(std_step);
530 test_step.dependOn(docs_step);
531}530}
532531
533const exe_cflags = [_][]const u8{532const exe_cflags = [_][]const u8{
ci/srht/freebsd_script+1-1
...@@ -45,7 +45,7 @@ cmake .. -DZIG_EXECUTABLE="$PREFIX/bin/zig"...@@ -45,7 +45,7 @@ cmake .. -DZIG_EXECUTABLE="$PREFIX/bin/zig"
45samu install45samu install
4646
47# Here we skip some tests to save time.47# Here we skip some tests to save time.
48release/bin/zig build test -Dskip-stage1 -Dskip-non-native48release/bin/zig build test docs -Dskip-stage1 -Dskip-non-native
4949
50if [ -f ~/.s3cfg ]; then50if [ -f ~/.s3cfg ]; then
51 mv ../LICENSE release/51 mv ../LICENSE release/
ci/zinc/linux_test_stage3_release.sh+1-1
...@@ -54,7 +54,7 @@ cd $WORKSPACE...@@ -54,7 +54,7 @@ cd $WORKSPACE
5454
55ZIG="$RELEASE_STAGING/bin/zig"55ZIG="$RELEASE_STAGING/bin/zig"
5656
57$ZIG build test \57$ZIG build test docs \
58 -fqemu \58 -fqemu \
59 -fwasmtime \59 -fwasmtime \
60 -Dstatic-llvm \60 -Dstatic-llvm \