Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 860c27676c8..e14edb2a034 100644
--- a/Makefile
+++ b/Makefile
@@ -586,8 +586,12 @@ test-hash-seed: all
.PHONY: test-doc
test-doc: doc-only ## Builds, lints, and verifies the docs.
- $(MAKE) lint
- $(PYTHON) tools/test.py $(PARALLEL_ARGS) $(CI_DOC)
+ @if [ "$(shell $(node_use_openssl))" != "true" ]; then \
+ echo "Skipping test-doc (no crypto)"; \
+ else \
+ $(MAKE) lint; \
+ $(PYTHON) tools/test.py $(PARALLEL_ARGS) $(CI_DOC); \
+ fi
test-known-issues: all
$(PYTHON) tools/test.py $(PARALLEL_ARGS) known_issues