mirror of
https://github.com/tendermint/tendermint.git
synced 2026-05-01 21:05:43 +00:00
This was a missing test case from the old P2P tests removed in #5453, which makes sure that all nodes are able to peer with each other regardless of how they discover peers. Fixes #2795, since the default CI testnet uses a combination of (partially meshed) persistent peers and PEX-based seed nodes.
16 lines
391 B
Makefile
16 lines
391 B
Makefile
all: docker runner
|
|
|
|
docker:
|
|
docker build --tag tendermint/e2e-node -f docker/Dockerfile ../..
|
|
|
|
# We need to build support for database backends into the app in
|
|
# order to build a binary with a Tendermint node in it (for built-in
|
|
# ABCI testing).
|
|
app:
|
|
go build -o build/app -tags badgerdb,boltdb,cleveldb,rocksdb ./app
|
|
|
|
runner:
|
|
go build -o build/runner ./runner
|
|
|
|
.PHONY: app docker runner
|