forked from ethereum-optimism/optimism-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
36 lines (25 loc) · 678 Bytes
/
Makefile
File metadata and controls
36 lines (25 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
.PHONY: all integration-tests deployer geth-l2 batch-submitter data-transport-layer test
SHELL := /bin/bash
all:
@echo "Building in parallel in the background"
./build-local.sh
@while :; do [ $$(docker ps --format='{{.Image}}' | grep builder | wc -l) == 0 ] && exit 0; sleep 2; done;
up-local:
./up.sh -l
integration-tests:
./build-local.sh -s integration_tests
deployer:
./build-local.sh -s deployer
geth-l2:
./build-local.sh -s geth_l2
batch-submitter:
./build-local.sh -s batch_submitter
data-transport-layer:
./build-local.sh -s data_transport_layer
# For developing against published docker images
up:
./up.sh
test:
./test.sh
test-%:
./test.sh -p $@