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
39 lines (29 loc) · 734 Bytes
/
Makefile
File metadata and controls
39 lines (29 loc) · 734 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
37
38
39
.PHONY: all integration-tests deployer geth-l2 batch-submitter data-transport-layer test
all:
@echo "Building all modules locally..."
@echo "Use \`make <module-name>\` to build a specific module for saved time."
@read -p "Continue with building all? [y/n]: " yn; \
if [ $${yn} = "y" ]; then \
./build-local.sh; \
else \
exit 1; \
fi
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 $@