From 957dfd92aacff56d323bc1d56fb99132743e958e Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sun, 10 May 2020 19:38:23 +0000 Subject: build: check-manifest runs after tests And just treat it as a non-fatal nag when checking the rest of the codebase. Calling it "check-manifest" as a `make' target preserves the old behavior, which causes the check to fail if a file were added to the worktree without changing the MANIFEST. --- Makefile.PL | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'Makefile.PL') diff --git a/Makefile.PL b/Makefile.PL index 30b8adda..472baa9b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -180,18 +180,22 @@ syntax:: \$(my_syntax) changed = \$(shell git ls-files -m) dsyn :: \$(addsuffix .syntax, \$(filter \$(changed), \$(syn_files))) -check-manifest :: MANIFEST - if test -e .git && git ls-files >\$?.gen 2>&1; then \\ - diff -u \$? \$?.gen; fi +check_manifest := if test -e .git && git ls-files >MANIFEST.gen 2>&1; then \\ + diff -u MANIFEST MANIFEST.gen; fi + +check-manifest : MANIFEST + \$(check_manifest) # the traditional way running per-*.t processes: -check-each :: pure_all check-manifest +check-each :: pure_all \$(EATMYDATA) \$(PROVE) --state=save -bvw -j\$(N) + -@\$(check_manifest) # lightly-tested way to run tests, relies "--state=save" in check-each # for best performance -check-run :: pure_all check-manifest +check-run :: pure_all \$(EATMYDATA) \$(PROVE) -bvw t/run.perl :: -j\$(N) + -@\$(check_manifest) check :: check-each -- cgit v1.2.3-24-ge0c7