Skip to content

Commit 1ee0683

Browse files
danbevBridgeAR
authored andcommitted
build: hard code doctool in test-doc target
This commit removes the usage of the CI_DOC variable in the test-doc recipe and specifies the doctool argument to tools/test.py explicitly. The motivation for this is that the build is taking longer time and this is mostly due to tests being run twice as the CI_DOC variable will be empty in most cases (when not using --without-ssl). This change was introduced with/after Commit 9039af8 ("build: skip test-ci doc targets if no crypto") and while I though it might make sense to change the setting of CI_DOC I not sure about the implications that might have to our CI environment. It currently looks like this: ifeq ($(node_use_openssl), false) CI_DOC := doctool else CI_DOC = endif Which is setting CI_DOC to doctool if there is no crypto support which not available. But perhaps this should be be the other way around, changing the order or updating condition to be true. PR-URL: #29375 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]> Reviewed-By: David Carlier <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent f6b005d commit 1ee0683

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ test-doc: doc-only ## Builds, lints, and verifies the docs.
604604
echo "Skipping test-doc (no crypto)"; \
605605
else \
606606
$(MAKE) lint; \
607-
$(PYTHON) tools/test.py $(PARALLEL_ARGS) $(CI_DOC); \
607+
$(PYTHON) tools/test.py $(PARALLEL_ARGS) doctool; \
608608
fi
609609

610610
test-known-issues: all

0 commit comments

Comments
 (0)