forked from erigontech/erigon
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/devel' into devel
- Loading branch information
Showing
720 changed files
with
138,064 additions
and
32,195 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
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,78 @@ | ||
name: QA - Clean exit (block downloading) | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'release/**' | ||
pull_request: | ||
branches: | ||
- devel | ||
- 'release/**' | ||
types: | ||
- ready_for_review | ||
|
||
jobs: | ||
long-running-test: | ||
runs-on: self-hosted | ||
env: | ||
ERIGON_REFERENCE_DATA_DIR: /opt/erigon-release/datadir | ||
ERIGON_TESTBED_DATA_DIR: /opt/erigon-testbed/datadir | ||
WORKING_TIME_SECONDS: 600 | ||
|
||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.21' | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.x' | ||
|
||
#- name: Install dependencies | ||
# run: | | ||
# sudo apt-get update | ||
# sudo apt-get install -y build-essential make gcc | ||
|
||
- name: Restore Erigon Testbed Data Directory | ||
run: | | ||
rm -rf $ERIGON_TESTBED_DATA_DIR/chaindata | ||
rsync -a --delete $ERIGON_REFERENCE_DATA_DIR/ $ERIGON_TESTBED_DATA_DIR/ | ||
- name: Clean Erigon Build Directory | ||
run: | | ||
make clean | ||
- name: Build Erigon | ||
run: | | ||
make erigon | ||
working-directory: ${{ github.workspace }} | ||
|
||
- name: Run Erigon, send ctrl-c and check for clean exiting | ||
run: | | ||
# Run Erigon, send ctrl-c and check logs | ||
python3 ${{ github.workspace }}/../../../../erigon-qa/test_system/qa-tests/clean-exit/run_and_check_clean_exit.py ${{ github.workspace }}/build/bin $ERIGON_TESTBED_DATA_DIR $WORKING_TIME_SECONDS | ||
# Capture monitoring script exit status | ||
monitoring_exit_status=$? | ||
|
||
# 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 | ||
else | ||
echo "Erigon has already terminated" | ||
fi | ||
|
||
# Check monitoring script exit status | ||
if [ $monitoring_exit_status -eq 0 ]; then | ||
echo "Monitoring completed successfully" | ||
else | ||
echo "Error detected in Erigon logs or monitoring script exited unexpectedly" | ||
exit 1 | ||
fi |
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 |
---|---|---|
@@ -0,0 +1,101 @@ | ||
name: QA - Tip tracking | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' # Run every day at 00:00 AM UTC | ||
push: | ||
branches: | ||
- workflow_tip_tracking | ||
|
||
jobs: | ||
long-running-test: | ||
runs-on: self-hosted | ||
env: | ||
ERIGON_REFERENCE_DATA_DIR: /opt/erigon-release/datadir | ||
ERIGON_TESTBED_DATA_DIR: /opt/erigon-testbed/datadir | ||
TRACKING_TIME_SECONDS: 14400 # 4 hours | ||
TOTAL_TIME_SECONDS: 28800 # 8 hours | ||
|
||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.21' | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Restore Erigon Testbed Data Directory | ||
run: | | ||
rm -rf $ERIGON_TESTBED_DATA_DIR/chaindata | ||
rsync -a --delete $ERIGON_REFERENCE_DATA_DIR/ $ERIGON_TESTBED_DATA_DIR/ | ||
- 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: | | ||
curl -X POST -H "Accept: application/json" -d '{"status": "paused"}' http://localhost:8080/production/default/status || true | ||
- 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 ${{ github.workspace }}/../../../../erigon-qa/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 | ||
# Capture monitoring script exit status | ||
test_exit_status=$? | ||
|
||
# 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 | ||
else | ||
echo "Erigon has already terminated" | ||
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: Resume the Erigon instance dedicated to db maintenance | ||
run: | | ||
curl -X POST -H "Accept: application/json" -d '{"status": "running"}' http://localhost:8080/production/default/status || true | ||
- name: Upload test results | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: test-results | ||
path: ${{ github.workspace }}/../../../../erigon-qa/test_system/qa-tests/tip-tracking/result.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
Oops, something went wrong.