ci: no need for --ast-check

since zig will now run AstGen even when using the stage1 backend.
This commit is contained in:
Andrew Kelley 2021-06-21 19:06:33 -07:00
parent cf65ab8601
commit 96ebf9396f

View File

@ -59,9 +59,9 @@ unset CXX
make $JOBS install
# Look for formatting errors and AST errors.
# Look for non-conforming code formatting.
# Formatting errors can be fixed by running `zig fmt` on the files printed here.
release/bin/zig fmt --check --ast-check ..
release/bin/zig fmt --check ..
# Here we rebuild zig but this time using the Zig binary we just now produced to
# build zig1.o rather than relying on the one built with stage0. See