QA - Clean exit (block downloading) #140
This file contains hidden or 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
| name: QA - Clean exit (block downloading) | |
| on: | |
| push: | |
| branches: | |
| - 'release/3.*' | |
| schedule: | |
| - cron: '0 8 * * 1-6' # Run every day at 08:00 AM UTC except Sunday | |
| workflow_dispatch: # Run manually | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| clean-exit-bd-test: | |
| runs-on: [self-hosted, qa, Ethereum, tip-tracking] | |
| env: | |
| ERIGON_REFERENCE_DATA_DIR: /opt/erigon-versions/reference-version/datadir | |
| ERIGON_TESTBED_AREA: /opt/erigon-testbed | |
| ERIGON_QA_PATH: /home/qarunner/erigon-qa | |
| WORKING_TIME_SECONDS: 600 | |
| CHAIN: mainnet | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6 | |
| - 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: Save Erigon Chaindata Directory | |
| id: save_chaindata_step | |
| run: | | |
| mv $ERIGON_REFERENCE_DATA_DIR/chaindata $ERIGON_TESTBED_AREA/chaindata-prev | |
| - name: Run Erigon, send ctrl-c and check for clean exiting | |
| id: test_step | |
| run: | | |
| set +e # Disable exit on error | |
| # Run Erigon, send ctrl-c and check logs | |
| python3 $ERIGON_QA_PATH/test_system/qa-tests/clean-exit/run_and_check_clean_exit.py \ | |
| ${{ github.workspace }}/build/bin $ERIGON_REFERENCE_DATA_DIR $WORKING_TIME_SECONDS Erigon3 | |
| # Capture monitoring script exit status | |
| test_exit_status=$? | |
| # Save the subsection reached status | |
| echo "test_executed=true" >> $GITHUB_OUTPUT | |
| # 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: 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 clean-exit-block-downloading \ | |
| --chain $CHAIN \ | |
| --runner ${{ runner.name }} \ | |
| --db_version $db_version \ | |
| --outcome $TEST_RESULT \ | |
| --result_file ${{ github.workspace }}/result.json | |
| - name: Upload test results | |
| if: steps.test_step.outputs.test_executed == 'true' | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: test-results | |
| path: ${{ github.workspace }}/result.json | |
| - name: Restore Erigon Chaindata Directory | |
| if: ${{ always() }} | |
| run: | | |
| if [ -d "$ERIGON_TESTBED_AREA/chaindata-prev" ]; then | |
| rm -rf $ERIGON_REFERENCE_DATA_DIR/chaindata | |
| mv $ERIGON_TESTBED_AREA/chaindata-prev $ERIGON_REFERENCE_DATA_DIR/chaindata | |
| fi | |
| - name: Resume the Erigon instance dedicated to db maintenance | |
| if: ${{ always() }} | |
| run: | | |
| python3 $ERIGON_QA_PATH/test_system/db-producer/resume_production.py || true | |
| - 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 |