@@ -21,3 +21,34 @@ build-bk-prod-morph-prod-mainnet-to-morph-nccc-geth:
21
21
aws s3 cp morph-nccc-geth.tar.gz s3://morph-0582-morph-technical-department-mainnet-data/morph-setup/morph-nccc-geth.tar.gz
22
22
23
23
24
+ # build for holesky
25
+ build-bk-prod-morph-prod-testnet-to-morph-geth-holesky :
26
+ if [ ! -d dist ]; then mkdir -p dist; fi
27
+ $(GORUN ) build/ci.go install ./cmd/geth
28
+ cp build/bin/geth dist/
29
+ tar -czvf morph-geth.tar.gz dist
30
+ aws s3 cp morph-geth.tar.gz s3://morph-0582-morph-technical-department-testnet-data/testnet/holesky/morph-setup/morph-geth.tar.gz
31
+
32
+ build-bk-prod-morph-prod-testnet-to-morph-nccc-geth-holesky :
33
+ if [ ! -d dist ]; then mkdir -p dist; fi
34
+ $(GORUN ) build/ci.go install ./cmd/geth
35
+ @echo " Done building."
36
+ cp build/bin/geth dist/
37
+ tar -czvf morph-nccc-geth.tar.gz dist
38
+ aws s3 cp morph-nccc-geth.tar.gz s3://morph-0582-morph-technical-department-testnet-data/testnet/holesky/morph-setup/morph-nccc-geth.tar.gz
39
+
40
+ build-bk-test-morph-test-qanet-to-morph-geth-qanet :
41
+ if [ ! -d dist ]; then mkdir -p dist; fi
42
+ $(GORUN ) build/ci.go install ./cmd/geth
43
+ @echo " Done building."
44
+ cp build/bin/geth dist/
45
+ tar -czvf morph-geth.tar.gz dist
46
+ aws s3 cp morph-geth.tar.gz s3://morph-7637-morph-technical-department-qanet-data/morph-setup/morph-geth.tar.gz
47
+
48
+ build-bk-test-morph-test-qanet-to-morph-nccc-geth-qanet :
49
+ if [ ! -d dist ]; then mkdir -p dist; fi
50
+ $(GORUN ) build/ci.go install ./cmd/geth
51
+ @echo " Done building."
52
+ cp build/bin/geth dist/
53
+ tar -czvf morph-nccc-geth.tar.gz dist
54
+ aws s3 cp morph-nccc-geth.tar.gz s3://morph-7637-morph-technical-department-qanet-data/morph-setup/morph-nccc-geth.tar.gz
0 commit comments