From d6ba14e5a52c393cbb9a01e55122ca9beff4df13 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 18 Oct 2017 20:06:26 -0700 Subject: [PATCH] build: use doc-only instead of doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use `make doc-only` instead of `make doc` where applicable. PR-URL: https://github.com/nodejs/node/pull/16309 Reviewed-By: Yuta Hiroto Reviewed-By: Joyee Cheung Reviewed-By: Gireesh Punathil Reviewed-By: Tobias Nießen --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d5c6f49cab3..1017452f087 100644 --- a/Makefile +++ b/Makefile @@ -208,7 +208,7 @@ else test: all $(MAKE) build-addons $(MAKE) build-addons-napi - $(MAKE) doc + $(MAKE) doc-only $(MAKE) cctest $(PYTHON) tools/test.py --mode=release -J \ $(CI_ASYNC_HOOKS) \ @@ -388,7 +388,7 @@ test-ci-js: | clear-stalled fi test-ci: LOGLEVEL := info -test-ci: | clear-stalled build-addons build-addons-napi doc +test-ci: | clear-stalled build-addons build-addons-napi doc-only out/Release/cctest --gtest_output=tap:cctest.tap $(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \ --mode=release --flaky-tests=$(FLAKY_TESTS) \