Skip to content

Commit ffdb03c

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

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -844,6 +844,11 @@ else ifeq ($(OSTYPE),os400)
844844
# TODO(@nodejs/web-infra): IBMi is currently hanging during HTML minification
845845
$(apidocs_html) $(apidocs_json) out/doc/api/all.html out/doc/api/all.json:
846846
@echo "Skipping $@ (not currently supported by $(OSTYPE) machines)"
847+
else ifeq ($(DESTCPU),riscv64)
848+
# Many riscv64 environments (except qemu) fail on the wasm steps here
849+
# https://github.com/nodejs/build/issues/4099#issuecomment-4038743335
850+
$(apidocs_html) $(apidocs_json) out/doc/api/all.html out/doc/api/all.json:
851+
@echo "Skipping $@ (not currently supported by $(DESTCPU) machines)"
847852
else
848853
$(apidocs_html) $(apidocs_json) out/doc/api/all.html out/doc/api/all.json &: $(apidoc_sources) tools/doc/node_modules | out/doc/api
849854
@if [ "$(shell $(node_use_openssl_and_icu))" != "true" ]; then \

0 commit comments

Comments
 (0)