Skip to content

Commit

Permalink
remove jq
Browse files Browse the repository at this point in the history
  • Loading branch information
twoshark committed Nov 15, 2023
1 parent a833268 commit 3bbb9d1
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ jobs:
- image: us-docker.pkg.dev/oplabs-tools-artifacts/images/ci-builder:latest
steps:
- checkout
- run:
name: Install JQ
command: sudo apt-get update && sudo apt-get install jq
- run:
name: Check Sepolia RPC Endpoints
command: |
Expand All @@ -54,14 +51,11 @@ jobs:
- image: us-docker.pkg.dev/oplabs-tools-artifacts/images/ci-builder:latest
steps:
- checkout
- run:
name: Install JQ
command: sudo apt-get update && sudo apt-get install jq
- run:
name: Check Goerli RPC Endpoints
command: |
if ops/verify_geth_endpoint.sh "<< parameters.ethereum_rpc_url >>" $TIME_DIFF_THRESHOLD && \
ops/verify_geth_endpoint.sh "<< parameters.l2_mainnet_rpc_url >>" $TIME_DIFF_THRESHOLD; then
if ops/verify_geth_endpoint.sh "<< parameters.l1_goerli_rpc_url >>" $TIME_DIFF_THRESHOLD && \
ops/verify_geth_endpoint.sh "<< parameters.l2_goerli_rpc_url >>" $TIME_DIFF_THRESHOLD; then
echo "Both RPC endpoints are up to date and not syncing."
echo "<< parameters.l1_goerli_rpc_url >>" > /tmp/l1_goerli_rpc_url
echo "<< parameters.l2_goerli_rpc_url >>" > /tmp/l2_goerli_rpc_url
Expand All @@ -79,9 +73,6 @@ jobs:
- image: us-docker.pkg.dev/oplabs-tools-artifacts/images/ci-builder:latest
steps:
- checkout
- run:
name: Install JQ
command: sudo apt-get update && sudo apt-get install jq
- run:
name: Check Mainnet RPC Endpoints
command: |
Expand Down

0 comments on commit 3bbb9d1

Please sign in to comment.