zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit d7e74f7cbfe3adfe70ae1d7b92509f81fce28a5a (tree)
parent 6ce37845af63245269efa9a959920802ce715e09
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Wed,  2 Aug 2023 15:19:56 -0700

CI: fix path to output langref

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

Diffstat:
Mci/aarch64-linux-debug.sh | 2+-
Mci/aarch64-linux-release.sh | 2+-
Mci/x86_64-linux-debug.sh | 2+-
Mci/x86_64-linux-release.sh | 2+-
4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ci/aarch64-linux-debug.sh b/ci/aarch64-linux-debug.sh @@ -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 diff --git a/ci/aarch64-linux-release.sh b/ci/aarch64-linux-release.sh @@ -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 diff --git a/ci/x86_64-linux-debug.sh b/ci/x86_64-linux-debug.sh @@ -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 diff --git a/ci/x86_64-linux-release.sh b/ci/x86_64-linux-release.sh @@ -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 \