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 \...@@ -72,7 +72,7 @@ stage3-debug/bin/zig build test docs \
7272
73# Look for HTML errors.73# Look for HTML errors.
74# TODO: move this to a build.zig flag (-Denable-tidy)74# 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
77# Ensure that updating the wasm binary from this commit will result in a viable build.77# Ensure that updating the wasm binary from this commit will result in a viable build.
78stage3-debug/bin/zig build update-zig178stage3-debug/bin/zig build update-zig1
ci/aarch64-linux-release.sh+1-1
...@@ -72,7 +72,7 @@ stage3-release/bin/zig build test docs \...@@ -72,7 +72,7 @@ stage3-release/bin/zig build test docs \
7272
73# Look for HTML errors.73# Look for HTML errors.
74# TODO: move this to a build.zig flag (-Denable-tidy)74# 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
77# Ensure that updating the wasm binary from this commit will result in a viable build.77# Ensure that updating the wasm binary from this commit will result in a viable build.
78stage3-release/bin/zig build update-zig178stage3-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 \...@@ -72,7 +72,7 @@ stage3-debug/bin/zig build test docs \
7272
73# Look for HTML errors.73# Look for HTML errors.
74# TODO: move this to a build.zig flag (-Denable-tidy)74# 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
77# Ensure that updating the wasm binary from this commit will result in a viable build.77# Ensure that updating the wasm binary from this commit will result in a viable build.
78stage3-debug/bin/zig build update-zig178stage3-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 \...@@ -73,7 +73,7 @@ stage3-release/bin/zig build test docs \
7373
74# Look for HTML errors.74# Look for HTML errors.
75# TODO: move this to a build.zig flag (-Denable-tidy)75# 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
78# Ensure that stage3 and stage4 are byte-for-byte identical.78# Ensure that stage3 and stage4 are byte-for-byte identical.
79stage3-release/bin/zig build \79stage3-release/bin/zig build \