authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-06-21 19:06:33-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-06-23 10:44:46-07:00
log96ebf9396f31c8645a2d0f064f211a25796f4c3e
tree29c99ec4a09c1049211104a412da573ed8bd8c4d
parentcf65ab86011c3098bff131d6b98e13a494fc4814

ci: no need for --ast-check

since zig will now run AstGen even when using the stage1 backend.

1 files changed, 2 insertions(+), 2 deletions(-)

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