make zig build test check for conforming formatting

There was already `zig build test-fmt` but now `zig build test` depends
on that one.

The CI scripts no longer need explicit logic since they already do
`zig build test`.
This commit is contained in:
Andrew Kelley
2024-06-16 19:31:59 -07:00
parent eb8201afde
commit cb1d1bdf59
5 changed files with 5 additions and 34 deletions

View File

@@ -49,13 +49,6 @@ unset CXX
ninja install
# TODO: move this to a build.zig step (check-fmt)
echo "Looking for non-conforming code formatting..."
stage3-release/bin/zig fmt --check .. \
--exclude ../test/cases/ \
--exclude ../doc/ \
--exclude ../build-release
# simultaneously test building self-hosted without LLVM and with 32-bit arm
stage3-release/bin/zig build \
-Dtarget=arm-linux-musleabihf \