CI: fix path to output langref

Apparently tidy doesn't exit with failure status if the input file is
not found? wtf tidy
This commit is contained in:
Andrew Kelley 2023-08-02 15:19:56 -07:00
parent 6ce37845af
commit d7e74f7cbf
4 changed files with 4 additions and 4 deletions

View file

@ -72,7 +72,7 @@ stage3-debug/bin/zig build test docs \
# Look for HTML errors.
# TODO: move this to a build.zig flag (-Denable-tidy)
tidy --drop-empty-elements no -qe "zig-out/doc/langref.html"
tidy --drop-empty-elements no -qe "../zig-out/doc/langref.html"
# Ensure that updating the wasm binary from this commit will result in a viable build.
stage3-debug/bin/zig build update-zig1

View file

@ -72,7 +72,7 @@ stage3-release/bin/zig build test docs \
# Look for HTML errors.
# TODO: move this to a build.zig flag (-Denable-tidy)
tidy --drop-empty-elements no -qe "zig-out/doc/langref.html"
tidy --drop-empty-elements no -qe "../zig-out/doc/langref.html"
# Ensure that updating the wasm binary from this commit will result in a viable build.
stage3-release/bin/zig build update-zig1

View file

@ -72,7 +72,7 @@ stage3-debug/bin/zig build test docs \
# Look for HTML errors.
# TODO: move this to a build.zig flag (-Denable-tidy)
tidy --drop-empty-elements no -qe "zig-out/doc/langref.html"
tidy --drop-empty-elements no -qe "../zig-out/doc/langref.html"
# Ensure that updating the wasm binary from this commit will result in a viable build.
stage3-debug/bin/zig build update-zig1

View file

@ -73,7 +73,7 @@ stage3-release/bin/zig build test docs \
# Look for HTML errors.
# TODO: move this to a build.zig flag (-Denable-tidy)
tidy --drop-empty-elements no -qe "zig-out/doc/langref.html"
tidy --drop-empty-elements no -qe "../zig-out/doc/langref.html"
# Ensure that stage3 and stage4 are byte-for-byte identical.
stage3-release/bin/zig build \