Skip to content
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/qa-rpc-integration-tests-remote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
format('{0}-{1}', github.workflow, github.ref)
}}
cancel-in-progress: true
runs-on: [ self-hosted, qa, Ethereum, rpc-integration ]
runs-on: [ self-hosted, qa, Ethereum, rpc-integration-commitment ]
env:
ERIGON_REFERENCE_DATA_DIR: /opt/erigon-versions/reference-version/datadir
ERIGON_TESTBED_AREA: /opt/erigon-testbed
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
run: |
echo "Starting Erigon..."

./erigon --datadir $ERIGON_REFERENCE_DATA_DIR --ethash.dagdir $ERIGON_REFERENCE_DATA_DIR --nodiscover --maxpeers 0 --no-downloader --prune.mode=archive --http=false > erigon.log 2>&1 &
./erigon --datadir $ERIGON_REFERENCE_DATA_DIR --persist.receipts --prune.experimental.include-commitment-history --nodiscover --maxpeers 0 --no-downloader --prune.mode=archive --http=false > erigon.log 2>&1 &

ERIGON_PID=$!
ERIGON_EXIT_STATUS=$?
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/qa-rpc-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
format('{0}-{1}', github.workflow, github.ref)
}}
cancel-in-progress: true
runs-on: [ self-hosted, qa, Ethereum, rpc-integration ]
runs-on: [ self-hosted, qa, Ethereum, rpc-integration-commitment ]
env:
ERIGON_REFERENCE_DATA_DIR: /opt/erigon-versions/reference-version/datadir
ERIGON_TESTBED_AREA: /opt/erigon-testbed
Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/scripts/run_rpc_tests_ethereum.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,12 @@ DISABLED_TEST_LIST=(
net_version/test_1.json
txpool_status/test_1.json
web3_clientVersion/test_1.json
# START - these tests require commitment history in historical RPC test runner
eth_getProof/test_21.json
eth_getProof/test_22.json
eth_getProof/test_23.json
# test disable needs debug
eth_getProof/test_24.json
eth_getProof/test_25.json
eth_getProof/test_26.json
# END - these tests require commitment history in historical RPC test runner
)

# Transform the array into a comma-separated string
DISABLED_TESTS=$(IFS=,; echo "${DISABLED_TEST_LIST[*]}")

# Call the main test runner script with the required and optional parameters
"$(dirname "$0")/run_rpc_tests.sh" mainnet v1.106.0 "$DISABLED_TESTS" "$WORKSPACE" "$RESULT_DIR"
"$(dirname "$0")/run_rpc_tests.sh" mainnet v1.107.0 "$DISABLED_TESTS" "$WORKSPACE" "$RESULT_DIR"
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,4 @@ DISABLED_TEST_LIST=(
DISABLED_TESTS=$(IFS=,; echo "${DISABLED_TEST_LIST[*]}")

# Call the main test runner script with the required and optional parameters

"$(dirname "$0")/run_rpc_tests.sh" mainnet v1.106.0 "$DISABLED_TESTS" "$WORKSPACE" "$RESULT_DIR" "latest" "$REFERENCE_HOST" "do-not-compare-error-message" "$DUMP_RESPONSE"
"$(dirname "$0")/run_rpc_tests.sh" mainnet v1.107.0 "$DISABLED_TESTS" "$WORKSPACE" "$RESULT_DIR" "latest" "$REFERENCE_HOST" "do-not-compare-error-message" "$DUMP_RESPONSE"
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ DISABLED_TEST_LIST=(
DISABLED_TESTS=$(IFS=,; echo "${DISABLED_TEST_LIST[*]}")

# Call the main test runner script with the required and optional parameters
"$(dirname "$0")/run_rpc_tests.sh" mainnet v1.106.0 "$DISABLED_TESTS" "$WORKSPACE" "$RESULT_DIR"
"$(dirname "$0")/run_rpc_tests.sh" mainnet v1.107.0 "$DISABLED_TESTS" "$WORKSPACE" "$RESULT_DIR"
Loading