Skip to content

Commit b452598

Browse files
sxaaduh95
authored andcommitted
build: skip dockit on riscv64
Signed-off-by: Stewart X Addison <sxa@ibm.com> PR-URL: #62251 Reviewed-By: Richard Lau <richard.lau@ibm.com>
1 parent 1905d1f commit b452598

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
@@ -882,6 +882,11 @@ else ifeq ($(OSTYPE),os400)
882882
# TODO(@nodejs/web-infra): IBMi is currently hanging during HTML minification
883883
$(apidocs_html) $(apidocs_json) out/doc/api/all.html out/doc/api/all.json:
884884
@echo "Skipping $@ (not currently supported by $(OSTYPE) machines)"
885+
else ifeq ($(ARCHTYPE),riscv64)
886+
# Many riscv64 environments (except qemu) fail on the wasm steps here
887+
# https://github.com/nodejs/build/issues/4099#issuecomment-4038743335
888+
$(apidocs_html) $(apidocs_json) out/doc/api/all.html out/doc/api/all.json:
889+
@echo "Skipping $@ (not currently supported by $(DESTCPU) machines)"
885890
else
886891
$(apidocs_html) $(apidocs_json) out/doc/api/all.html out/doc/api/all.json &: $(apidoc_sources) tools/doc/node_modules | out/doc/api
887892
@if [ "$(shell $(node_use_openssl_and_icu))" != "true" ]; then \

0 commit comments

Comments
 (0)