| author | |
| committer | |
| log | d7e74f7cbfe3adfe70ae1d7b92509f81fce28a5a |
| tree | 6708a16281c685177f9415a9f6d7b92daba9c0d1 |
| parent | 6ce37845af63245269efa9a959920802ce715e09 |
Apparently tidy doesn't exit with failure status if the input file is
not found? wtf tidy4 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 | 72 | |
| 73 | 73 | # Look for HTML errors. |
| 74 | 74 | # TODO: move this to a build.zig flag (-Denable-tidy) |
| 75 | tidy --drop-empty-elements no -qe "zig-out/doc/langref.html" | |
| 75 | tidy --drop-empty-elements no -qe "../zig-out/doc/langref.html" | |
| 76 | 76 | |
| 77 | 77 | # Ensure that updating the wasm binary from this commit will result in a viable build. |
| 78 | 78 | stage3-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 | 72 | |
| 73 | 73 | # Look for HTML errors. |
| 74 | 74 | # TODO: move this to a build.zig flag (-Denable-tidy) |
| 75 | tidy --drop-empty-elements no -qe "zig-out/doc/langref.html" | |
| 75 | tidy --drop-empty-elements no -qe "../zig-out/doc/langref.html" | |
| 76 | 76 | |
| 77 | 77 | # Ensure that updating the wasm binary from this commit will result in a viable build. |
| 78 | 78 | stage3-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 | 72 | |
| 73 | 73 | # Look for HTML errors. |
| 74 | 74 | # TODO: move this to a build.zig flag (-Denable-tidy) |
| 75 | tidy --drop-empty-elements no -qe "zig-out/doc/langref.html" | |
| 75 | tidy --drop-empty-elements no -qe "../zig-out/doc/langref.html" | |
| 76 | 76 | |
| 77 | 77 | # Ensure that updating the wasm binary from this commit will result in a viable build. |
| 78 | 78 | stage3-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 | 73 | |
| 74 | 74 | # Look for HTML errors. |
| 75 | 75 | # TODO: move this to a build.zig flag (-Denable-tidy) |
| 76 | tidy --drop-empty-elements no -qe "zig-out/doc/langref.html" | |
| 76 | tidy --drop-empty-elements no -qe "../zig-out/doc/langref.html" | |
| 77 | 77 | |
| 78 | 78 | # Ensure that stage3 and stage4 are byte-for-byte identical. |
| 79 | 79 | stage3-release/bin/zig build \ |