From d3651f5d30a0532f39da962b9e76ba8cbada6e6c Mon Sep 17 00:00:00 2001 From: John Levon Date: Wed, 10 Feb 2021 16:39:58 +0000 Subject: fix pre-push build order (#326) Re-order so we don't end up with an ASAN-enabled build at the end; purely for convenience. Signed-off-by: John Levon Reviewed-by: Swapnil Ingle --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2baaee8..9c15d88 100644 --- a/Makefile +++ b/Makefile @@ -64,13 +64,13 @@ test: all cd $(BUILD_DIR)/test; ctest --verbose pre-push: realclean - make test CC=gcc - make test CC=gcc BUILD_TYPE=rel + make test WITH_ASAN=1 make realclean - make test CC=clang make test CC=clang BUILD_TYPE=rel + make test CC=clang make realclean - make test WITH_ASAN=1 + make test CC=gcc BUILD_TYPE=rel + make test CC=gcc realclean: rm -rf $(BUILD_DIR_BASE) -- cgit v1.1