authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-08-02 15:19:56-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-08-03 09:52:15-07:00
logd7e74f7cbfe3adfe70ae1d7b92509f81fce28a5a
tree6708a16281c685177f9415a9f6d7b92daba9c0d1
parent6ce37845af63245269efa9a959920802ce715e09

CI: fix path to output langref

Apparently tidy doesn't exit with failure status if the input file is not found? wtf tidy

4 files changed, 4 insertions(+), 4 deletions(-)

ci/aarch64-linux-debug.sh+1-1
......@@ -72,7 +72,7 @@ stage3-debug/bin/zig build test docs \
7272
7373# Look for HTML errors.
7474# TODO: move this to a build.zig flag (-Denable-tidy)
75tidy --drop-empty-elements no -qe "zig-out/doc/langref.html"
75tidy --drop-empty-elements no -qe "../zig-out/doc/langref.html"
7676
7777# Ensure that updating the wasm binary from this commit will result in a viable build.
7878stage3-debug/bin/zig build update-zig1
ci/aarch64-linux-release.sh+1-1
......@@ -72,7 +72,7 @@ stage3-release/bin/zig build test docs \
7272
7373# Look for HTML errors.
7474# TODO: move this to a build.zig flag (-Denable-tidy)
75tidy --drop-empty-elements no -qe "zig-out/doc/langref.html"
75tidy --drop-empty-elements no -qe "../zig-out/doc/langref.html"
7676
7777# Ensure that updating the wasm binary from this commit will result in a viable build.
7878stage3-release/bin/zig build update-zig1
ci/x86_64-linux-debug.sh+1-1
......@@ -72,7 +72,7 @@ stage3-debug/bin/zig build test docs \
7272
7373# Look for HTML errors.
7474# TODO: move this to a build.zig flag (-Denable-tidy)
75tidy --drop-empty-elements no -qe "zig-out/doc/langref.html"
75tidy --drop-empty-elements no -qe "../zig-out/doc/langref.html"
7676
7777# Ensure that updating the wasm binary from this commit will result in a viable build.
7878stage3-debug/bin/zig build update-zig1
ci/x86_64-linux-release.sh+1-1
......@@ -73,7 +73,7 @@ stage3-release/bin/zig build test docs \
7373
7474# Look for HTML errors.
7575# TODO: move this to a build.zig flag (-Denable-tidy)
76tidy --drop-empty-elements no -qe "zig-out/doc/langref.html"
76tidy --drop-empty-elements no -qe "../zig-out/doc/langref.html"
7777
7878# Ensure that stage3 and stage4 are byte-for-byte identical.
7979stage3-release/bin/zig build \