Skip to content

Commit

Permalink
add make target for qanet (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvelFisher authored Dec 18, 2024
1 parent 03be34e commit 03be7f1
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions MakefileEc2.mk
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,18 @@ build-bk-prod-morph-prod-testnet-to-morph-nccc-geth-holesky:
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

build-bk-test-morph-test-qanet-to-morph-geth-qanet:
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-geth.tar.gz dist
aws s3 cp morph-geth.tar.gz s3://morph-7637-morph-technical-department-qanet-data/morph-setup/morph-geth.tar.gz

build-bk-test-morph-test-qanet-to-morph-nccc-geth-qanet:
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-7637-morph-technical-department-qanet-data/morph-setup/morph-nccc-geth.tar.gz

0 comments on commit 03be7f1

Please sign in to comment.