Files
status-go/test/functional/docker-compose.anvil.yml
Igor Sirotin b7ba8e52d6 refactor: move test suites under test/
tests-functional/    -> test/functional/
  tests-unit-network/  -> test/unit-network/

No Go code changes beyond the two package paths. Every reference follows:
Makefile targets, the pytest-lint and reliability workflows, the three
Jenkinsfiles, the root Dockerfile, pyrightconfig.json, .gitignore, the
benchmark and functional-test scripts, and the docs.

All paths inside the moved directories are self-contained (docker compose
uses `context: .`, the Python helpers resolve from __file__), so the extra
level of nesting does not reach outside.

refs #7067
2026-08-20 20:59:45 +02:00

23 lines
581 B
YAML

services:
anvil:
image: ghcr.io/foundry-rs/foundry:v1.4.0
platform: linux/amd64
command:
- anvil --host 0.0.0.0 --block-time 2
ports:
- 8545
foundry:
platform: linux/amd64
environment:
- API_KEY_ETHERSCAN="" # env var is required, but value isn't used
- API_KEY_ARBISCAN="" # env var is required, but value isn't used
- API_KEY_OPTIMISTIC_ETHERSCAN="" # env var is required, but value isn't used
- ETH_RPC_URL=http://anvil:8545
depends_on:
- anvil
build:
context: .
dockerfile: Dockerfile