forked from erigontech/erigon
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* merge with upstream v2.60.5 * review comments
- Loading branch information
1 parent
99d016f
commit 6b3eca3
Showing
96 changed files
with
4,446 additions
and
1,431 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
name: QA - Tip tracking (Gnosis) | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'release/2.*' | ||
pull_request: | ||
branches: | ||
- 'release/2.*' | ||
types: | ||
- ready_for_review | ||
workflow_dispatch: # Run manually | ||
|
||
jobs: | ||
tip-tracking-test: | ||
runs-on: [self-hosted, Gnosis] | ||
timeout-minutes: 600 | ||
env: | ||
ERIGON_REFERENCE_DATA_DIR: /opt/erigon-versions/reference-version/datadir | ||
ERIGON_TESTBED_DATA_DIR: /opt/erigon-testbed/datadir | ||
ERIGON_QA_PATH: /home/qarunner/erigon-qa | ||
TRACKING_TIME_SECONDS: 14400 # 4 hours | ||
TOTAL_TIME_SECONDS: 28800 # 8 hours | ||
CHAIN: gnosis | ||
|
||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Clean Erigon Build Directory | ||
run: | | ||
make clean | ||
- name: Build Erigon | ||
run: | | ||
make erigon | ||
working-directory: ${{ github.workspace }} | ||
|
||
- name: Pause the Erigon instance dedicated to db maintenance | ||
run: | | ||
python3 $ERIGON_QA_PATH/test_system/db-producer/pause_production.py || true | ||
- name: Restore Erigon Testbed Data Directory | ||
run: | | ||
rsync -a --delete $ERIGON_REFERENCE_DATA_DIR/ $ERIGON_TESTBED_DATA_DIR/ | ||
- name: Run Erigon, wait sync and check ability to maintain sync | ||
id: test_step | ||
run: | | ||
set +e # Disable exit on error | ||
# 1. Launch the testbed Erigon instance | ||
# 2. Allow time for the Erigon to achieve synchronization | ||
# 3. Begin timing the duration that Erigon maintains synchronization | ||
python3 $ERIGON_QA_PATH/test_system/qa-tests/tip-tracking/run_and_check_tip_tracking.py \ | ||
${{ github.workspace }}/build/bin $ERIGON_TESTBED_DATA_DIR $TRACKING_TIME_SECONDS $TOTAL_TIME_SECONDS Erigon2 $CHAIN | ||
# Capture monitoring script exit status | ||
test_exit_status=$? | ||
|
||
# Save the subsection reached status | ||
echo "::set-output name=test_executed::true" | ||
|
||
# Clean up Erigon process if it's still running | ||
if kill -0 $ERIGON_PID 2> /dev/null; then | ||
echo "Terminating Erigon" | ||
kill $ERIGON_PID | ||
wait $ERIGON_PID | ||
fi | ||
|
||
# Check test runner script exit status | ||
if [ $test_exit_status -eq 0 ]; then | ||
echo "Tests completed successfully" | ||
echo "TEST_RESULT=success" >> "$GITHUB_OUTPUT" | ||
else | ||
echo "Error detected during tests" | ||
echo "TEST_RESULT=failure" >> "$GITHUB_OUTPUT" | ||
fi | ||
|
||
- name: Delete Erigon Testbed Data Directory | ||
if: always() | ||
run: | | ||
rm -rf $ERIGON_TESTBED_DATA_DIR | ||
- name: Resume the Erigon instance dedicated to db maintenance | ||
run: | | ||
python3 $ERIGON_QA_PATH/test_system/db-producer/resume_production.py || true | ||
- name: Save test results | ||
if: steps.test_step.outputs.test_executed == 'true' | ||
env: | ||
TEST_RESULT: ${{ steps.test_step.outputs.TEST_RESULT }} | ||
run: | | ||
db_version=$(python3 $ERIGON_QA_PATH/test_system/qa-tests/uploads/prod_info.py $ERIGON_REFERENCE_DATA_DIR/../production.ini production erigon_repo_commit) | ||
if [ -z "$db_version" ]; then | ||
db_version="no-version" | ||
fi | ||
python3 $ERIGON_QA_PATH/test_system/qa-tests/uploads/upload_test_results.py \ | ||
--repo erigon \ | ||
--commit $(git rev-parse HEAD) \ | ||
--branch ${{ github.ref_name }} \ | ||
--test_name tip-tracking \ | ||
--chain $CHAIN \ | ||
--runner ${{ runner.name }} \ | ||
--db_version $db_version \ | ||
--outcome $TEST_RESULT \ | ||
--result_file ${{ github.workspace }}/result-$CHAIN.json | ||
- name: Upload test results | ||
if: steps.test_step.outputs.test_executed == 'true' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: test-results | ||
path: ${{ github.workspace }}/result-${{ env.CHAIN }}.json | ||
|
||
- name: Action for Success | ||
if: steps.test_step.outputs.TEST_RESULT == 'success' | ||
run: echo "::notice::Tests completed successfully" | ||
|
||
- name: Action for Not Success | ||
if: steps.test_step.outputs.TEST_RESULT != 'success' | ||
run: | | ||
echo "::error::Error detected during tests" | ||
exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
finality_checkpoint: {"data":{"finalized_checkpoint":{"epoch":"1","root":"0xde46b0f2ed5e72f0cec20246403b14c963ec995d7c2825f3532b0460c09d5693"},"current_justified_checkpoint":{"epoch":"3","root":"0xa6e47f164b1a3ca30ea3b2144bd14711de442f51e5b634750a12a1734e24c987"},"previous_justified_checkpoint":{"epoch":"2","root":"0x4c3ee7969e485696669498a88c17f70e6999c40603e2f4338869004392069063"}},"finalized":false,"version":2,"execution_optimistic":false} | ||
finality_checkpoint: {"data":{"finalized":{"epoch":"1","root":"0xde46b0f2ed5e72f0cec20246403b14c963ec995d7c2825f3532b0460c09d5693"},"current_justified":{"epoch":"3","root":"0xa6e47f164b1a3ca30ea3b2144bd14711de442f51e5b634750a12a1734e24c987"},"previous_justified":{"epoch":"2","root":"0x4c3ee7969e485696669498a88c17f70e6999c40603e2f4338869004392069063"}},"finalized":false,"version":2,"execution_optimistic":false} | ||
randao: {"data":{"randao":"0xdeec617717272914bfd73e02ca1da113a83cf4cf33cd4939486509e2da4ccf4e"},"finalized":false,"execution_optimistic":false} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.