Enable the gnosis build in CI on non-Windows targets (#4501)

This commit is contained in:
zah 2023-01-13 12:17:53 +02:00 committed by GitHub
parent 3b03ef8ffb
commit 9861f0ab7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -102,6 +102,14 @@ TOOLS_CSV := $(subst $(SPACE),$(COMMA),$(TOOLS))
local-testnet-minimal \
local-testnet-mainnet
# TODO: Add the installer packages here
PLATFORM_SPECIFIC_TARGETS :=
# TODO Fix the gnosis build on Windows
ifneq ($(OS), Windows_NT)
PLATFORM_SPECIFIC_TARGETS += gnosis-build
endif
ifeq ($(NIM_PARAMS),)
# "variables.mk" was not included, so we update the submodules.
#
@ -123,7 +131,7 @@ GIT_SUBMODULE_UPDATE := git submodule update --init --recursive
else # "variables.mk" was included. Business as usual until the end of this file.
# default target, because it's the first one that doesn't start with '.'
all: | $(TOOLS) libnfuzz.so libnfuzz.a
all: | $(TOOLS) libnfuzz.so libnfuzz.a $(PLATFORM_SPECIFIC_TARGETS)
# must be included after the default target
-include $(BUILD_SYSTEM_DIR)/makefiles/targets.mk