mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-10 15:07:24 +00:00
Partial fix for #5291. For details, see [README.md](https://github.com/tendermint/tendermint/blob/erik/e2e-tests/test/e2e/README.md) and [RFC-001](https://github.com/tendermint/tendermint/blob/master/docs/rfc/rfc-001-end-to-end-testing.md). This only includes a single test case under `test/e2e/tests/`, as a proof of concept - additional test cases will be submitted separately. A randomized testnet generator will also be submitted separately, there a currently just a handful of static testnets under `test/e2e/networks/`. This will eventually replace the current P2P tests and run in CI.
17 lines
422 B
Makefile
17 lines
422 B
Makefile
docker:
|
|
docker build --tag tendermint/e2e-node -f docker/Dockerfile ../..
|
|
|
|
ci: runner
|
|
./build/runner -f networks/ci.toml
|
|
|
|
# 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 ci docker runner
|