Skip to content

Commit

Permalink
update for holesky build rule
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvelFisher committed Dec 3, 2024
1 parent 801e9a9 commit a74e9f6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions MakefileEc2.mk
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,19 @@ build-bk-prod-morph-prod-mainnet-to-morph-nccc-geth:
aws s3 cp morph-nccc-geth.tar.gz s3://morph-0582-morph-technical-department-mainnet-data/morph-setup/morph-nccc-geth.tar.gz


# build for holesky
build-bk-prod-morph-prod-testnet-to-morph-geth-holesky:
if [ ! -d dist ]; then mkdir -p dist; fi
$(GORUN) build/ci.go install ./cmd/geth
cp build/bin/geth dist/
tar -czvf morph-geth.tar.gz dist
aws s3 cp morph-geth.tar.gz s3://morph-0582-morph-technical-department-testnet-data/testnet/holesky/morph-setup/morph-geth.tar.gz

build-bk-prod-morph-prod-testnet-to-morph-nccc-geth-holesky:
if [ ! -d dist ]; then mkdir -p dist; fi
$(GORUN) build/ci.go install ./cmd/geth
@echo "Done building."
cp build/bin/geth dist/
tar -czvf morph-nccc-geth.tar.gz dist
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

0 comments on commit a74e9f6

Please sign in to comment.