From 3bbb9d1117ac365750755b2f00c0b608c1a57eb5 Mon Sep 17 00:00:00 2001 From: Tushar Shah Date: Wed, 15 Nov 2023 09:06:26 -0700 Subject: [PATCH] remove jq --- .circleci/config.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 39d0c86c..97e0893f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: | @@ -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 @@ -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: |