remove unnecessary binaries from builds (#3179)

* `fork_choice` and `proto_array` are already covered by better tests
* `nimbus_signing_node` is not used by local testnet
This commit is contained in:
Jacek Sieka 2021-12-10 11:56:51 +01:00 committed by GitHub
parent 9d5389654b
commit 1a87e60f7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -150,8 +150,6 @@ XML_TEST_BINARIES := \
# test suite
TEST_BINARIES := \
proto_array \
fork_choice \
state_sim \
block_sim
.PHONY: $(TEST_BINARIES) $(XML_TEST_BINARIES)
@ -284,7 +282,7 @@ clean-testnet0:
clean-testnet1:
rm -rf build/data/testnet1*
testnet0 testnet1: | nimbus_beacon_node nimbus_signing_node
testnet0 testnet1: | nimbus_beacon_node
build/nimbus_beacon_node \
--network=$@ \
--log-level="$(RUNTIME_LOG_LEVEL)" \

View File

@ -223,7 +223,7 @@ if [[ "${HAVE_LSOF}" == "1" ]]; then
fi
# Build the binaries
BINARIES="nimbus_beacon_node nimbus_signing_node nimbus_validator_client deposit_contract"
BINARIES="nimbus_beacon_node nimbus_validator_client deposit_contract"
if [[ "$ENABLE_LOGTRACE" == "1" ]]; then
BINARIES="${BINARIES} logtrace"
fi