Skip to content

Commit

Permalink
ci: update geth tool to v1.14.7 (#11410)
Browse files Browse the repository at this point in the history
* ci: update geth tool to v1.14.7

* ci: temporarily disable L1 geth version check, so L1 geth can be updated

* ops-bedrock: explicit hash state.scheme on geth
  • Loading branch information
protolambda authored Aug 9, 2024
1 parent 8b636e0 commit dae091f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@ jobs:
resource_class: xlarge
steps:
- checkout
- run:
name: "Check L1 geth version"
command: ./ops/scripts/geth-version-checker.sh || (echo "geth version is wrong, update ci-builder"; false)
# - run: # temporarily disabled, to update ci-builder.
# name: "Check L1 geth version"
# command: ./ops/scripts/geth-version-checker.sh || (echo "geth version is wrong, update ci-builder"; false)
- install-contracts-dependencies
- restore_cache:
name: Restore Go modules cache
Expand Down
2 changes: 2 additions & 0 deletions ops-bedrock/l1-geth-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ if [ ! -d "$GETH_CHAINDATA_DIR" ]; then
echo "Initializing genesis."
geth --verbosity="$VERBOSITY" init \
--datadir="$GETH_DATA_DIR" \
--state.scheme=hash \
"$GENESIS_FILE_PATH"
else
echo "$GETH_CHAINDATA_DIR exists."
Expand Down Expand Up @@ -45,6 +46,7 @@ exec geth \
--authrpc.vhosts="*" \
--authrpc.jwtsecret=/config/jwt-secret.txt \
--gcmode=archive \
--state.scheme=hash \
--metrics \
--metrics.addr=0.0.0.0 \
--metrics.port=6060 \
Expand Down
2 changes: 2 additions & 0 deletions ops-bedrock/l2-op-geth-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ if [ ! -d "$GETH_CHAINDATA_DIR" ]; then
echo "Initializing genesis."
geth --verbosity="$VERBOSITY" init \
--datadir="$GETH_DATA_DIR" \
--state.scheme=hash \
"$GENESIS_FILE_PATH"
else
echo "$GETH_CHAINDATA_DIR exists."
Expand Down Expand Up @@ -46,6 +47,7 @@ exec geth \
--authrpc.vhosts="*" \
--authrpc.jwtsecret=/config/jwt-secret.txt \
--gcmode=archive \
--state.scheme=hash \
--metrics \
--metrics.addr=0.0.0.0 \
--metrics.port=6060 \
Expand Down
2 changes: 1 addition & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"abigen": "v1.10.25",
"foundry": "626221f5ef44b4af950a08e09bd714650d9eb77d",
"geth": "v1.13.14",
"geth": "v1.14.7",
"eth2_testnet_genesis": "v0.10.0",
"nvm": "v20.9.0",
"slither": "0.10.2",
Expand Down

0 comments on commit dae091f

Please sign in to comment.