authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-06-15 14:26:15-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-06-15 14:27:56-07:00
loge125ead2b1549eff5bd20c3fb640c9480a9c9aeb
tree1639be486155c369d2e2766ec1076fd3a3b57d5b
parent76584ad0c6ac09e38da1abf354f86e3e3ecce659

ci: remove confusing message now that --ast-check is added

This extra message was intended to help contributors by clarifying what to do when they hit a `zig fmt` failure, but now AST errors are also emitted here and the message may actually introduce confusion. Remove it for now.

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

ci/azure/linux_script+3-2
......@@ -59,8 +59,9 @@ unset CXX
5959
6060make $JOBS install
6161
62# look for formatting errors
63release/bin/zig fmt --check --ast-check .. || (echo "Please run 'zig fmt' to fix the non-conforming files listed above." && false)
62# Look for formatting errors and AST errors.
63# Formatting errors can be fixed by running `zig fmt` on the files printed here.
64release/bin/zig fmt --check --ast-check ..
6465
6566# Here we rebuild zig but this time using the Zig binary we just now produced to
6667# build zig1.o rather than relying on the one built with stage0. See