From f68caf529cdbbfecf20189950cc3cb20d7e1c274 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sun, 3 Jun 2018 12:31:24 -0700 Subject: [PATCH] tools: make buildtest-all: include latest stack.yaml also [ci skip] --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 52db58095..e1b91ec39 100644 --- a/Makefile +++ b/Makefile @@ -625,7 +625,7 @@ buildtest: $(call def-help,buildtest, build all hledger packages quickly from sc buildtest-stack.yaml buildtest-all: $(call def-help,buildtest-all, build all hledger packages quickly from scratch ensuring no warnings with each ghc version/stackage snapshot ) - for F in stack-*.yaml; do make --no-print-directory buildtest-$$F; done + for F in stack-*.yaml stack.yaml; do make --no-print-directory buildtest-$$F; done buildtest-%: $(call def-help,buildtest-STACKFILE, build all hledger packages quickly from scratch ensuring no warnings with the stack yaml file; eg make buildtest-stack-ghc8.2.yaml ) $(STACK) build --test --bench --fast --force-dirty --ghc-options=-fforce-recomp --ghc-options=-Werror --stack-yaml=$*