We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcb6bcf commit d424aacCopy full SHA for d424aac
.github/workflows/qa-rpc-integration-tests-latest.yml
@@ -56,6 +56,7 @@ jobs:
56
working-directory: ${{ github.workspace }}
57
58
- name: Wait for current Erigon instance to reach the tip
59
+ id: preparing_step
60
run: |
61
ERIGON_PID=$(pgrep -x erigon | head -1)
62
if [ -z "$ERIGON_PID" ]; then
@@ -68,6 +69,13 @@ jobs:
68
69
--erigon-pid=$ERIGON_PID
70
fi
71
72
+ - name: Upload preparing-step logs on failure
73
+ if: failure() && steps.preparing_step.outcome == 'failure'
74
+ uses: actions/upload-artifact@v6
75
+ with:
76
+ name: preparing-step-logs
77
+ path: ${{ env.ERIGON_REFERENCE_DATA_DIR }}/logs/
78
+
79
- name: Pause the Erigon instance dedicated to db maintenance
80
81
python3 $ERIGON_QA_PATH/test_system/db-producer/pause_production.py || true
0 commit comments