Commit 4dfd6ae5 authored by Adrian Sutton's avatar Adrian Sutton Committed by GitHub

ci: Rename devnet-allocs-tests target to devnet-allocs (#12384)

Restores compatibility with the target name people are used to using for e2e tests and that is mentioned in the README and error messages etc.
parent fb62380f
......@@ -275,7 +275,7 @@ jobs:
- run:
name: Generate allocs
command: |
make devnet-allocs-tests
make devnet-allocs
- save_cache:
name: Save Go modules cache
key: gomod-contracts-build-{{ checksum "go.sum" }}
......
......@@ -182,7 +182,7 @@ pre-devnet: submodules $(DEVNET_CANNON_PRESTATE_FILES)
devnet-up: pre-devnet ## Starts the local devnet
./ops/scripts/newer-file.sh .devnet/allocs-l1.json ./packages/contracts-bedrock \
|| make devnet-allocs
|| make devnet-allocs-single
PYTHONPATH=./bedrock-devnet $(PYTHON) ./bedrock-devnet/main.py --monorepo-dir=.
.PHONY: devnet-up
......@@ -202,22 +202,22 @@ devnet-clean: ## Cleans up local devnet environment
docker volume ls --filter name=ops-bedrock --format='{{.Name}}' | xargs -r docker volume rm
.PHONY: devnet-clean
devnet-allocs: pre-devnet ## Generates allocations for the local devnet
devnet-allocs-single: pre-devnet ## Generates allocations for the local devnet
PYTHONPATH=./bedrock-devnet $(PYTHON) ./bedrock-devnet/main.py --monorepo-dir=. --allocs
.PHONY: devnet-allocs
.PHONY: devnet-allocs-single
devnet-allocs-tests:
DEVNET_L2OO=true make devnet-allocs
devnet-allocs:
DEVNET_L2OO=true make devnet-allocs-single
cp -r .devnet/ .devnet-l2oo/
DEVNET_ALTDA=true make devnet-allocs
DEVNET_ALTDA=true make devnet-allocs-single
cp -r .devnet/ .devnet-alt-da/
DEVNET_ALTDA=false GENERIC_ALTDA=true make devnet-allocs
DEVNET_ALTDA=false GENERIC_ALTDA=true make devnet-allocs-single
cp -r .devnet/ .devnet-alt-da-generic/
USE_MT_CANNON=true make devnet-allocs
USE_MT_CANNON=true make devnet-allocs-single
cp -r .devnet/ .devnet-mt-cannon
make devnet-allocs
make devnet-allocs-single
cp -r .devnet/ .devnet-standard/
.PHONY: devnet-allocs-tests
.PHONY: devnet-allocs
devnet-logs: ## Displays logs for the local devnet
@(cd ./ops-bedrock && docker compose logs -f)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment