From ffe1cf388711c28c6f0cee8ebabec1d976d9e11f Mon Sep 17 00:00:00 2001 From: John Cai Date: Mon, 28 Aug 2023 15:32:23 -0400 Subject: Makefile: Do not parallelize verify step Parallelizing the verify step causes the error output to be buried within other output, making it hard to read. De-parallelizing it will cause us to take a latency hit, and it will fail on the first failure--but the benefit is it will be easier to read the error. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d24900602..dcea92d36 100644 --- a/Makefile +++ b/Makefile @@ -425,6 +425,10 @@ test-with-praefect-wal: test-with-praefect race-go: override TEST_OPTIONS := ${TEST_OPTIONS} -race race-go: test-go +## Running the verify steps in parallel make it difficult to read the output +## when there are failures. +.NOTPARALLEL: verify + .PHONY: verify ## Verify that various files conform to our expectations. verify: check-mod-tidy notice-up-to-date check-proto lint -- cgit v1.2.3