From 75b5352511ab12444bc4476ab4aae485ab128553 Mon Sep 17 00:00:00 2001 From: Avery Pennarun Date: Wed, 5 Dec 2018 01:47:44 -0500 Subject: [PATCH] test.do: allow docs to build in parallel with tests. Previously, we'd try to build all the critical stuff first, and then run the tests. Nowadays, it takes a little longer to build the docs (especially some of the docs/cookbook/ stuff), and this isn't needed to run the tests, so let's allow them to parallelize. --- test.do | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.do b/test.do index b816c54..0049135 100644 --- a/test.do +++ b/test.do @@ -1,3 +1,3 @@ -redo-ifchange _all -redo minimal/test docs/test t/all +redo-ifchange bin/all +redo minimal/test docs/test t/all _all [ -n "$DO_BUILT" ] || echo "Don't forget to test 'minimal/do -c test'" >&2