Skip to content

Commit 1cf3884

Browse files
committed
build: skip dockit on riscv64
Signed-off-by: Stewart X Addison <sxa@ibm.com>
1 parent f9ab994 commit 1cf3884

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -881,6 +881,11 @@ else ifeq ($(OSTYPE),os400)
881881
# TODO(@nodejs/web-infra): IBMi is currently hanging during HTML minification
882882
$(apidocs_html) $(apidocs_json) out/doc/api/all.html out/doc/api/all.json:
883883
@echo "Skipping $@ (not currently supported by $(OSTYPE) machines)"
884+
else ifeq ($(ARCHTYPE),riscv64)
885+
# Many riscv64 environments (except qemu) fail on the wasm steps here
886+
# https://github.com/nodejs/build/issues/4099#issuecomment-4038743335
887+
$(apidocs_html) $(apidocs_json) out/doc/api/all.html out/doc/api/all.json:
888+
@echo "Skipping $@ (not currently supported by $(DESTCPU) machines)"
884889
else
885890
$(apidocs_html) $(apidocs_json) out/doc/api/all.html out/doc/api/all.json &: $(apidoc_sources) tools/doc/node_modules | out/doc/api
886891
@if [ "$(shell $(node_use_openssl_and_icu))" != "true" ]; then \

0 commit comments

Comments
 (0)