We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09ab6a5 commit 0d929c0Copy full SHA for 0d929c0
.github/workflows/webstandard.yml
@@ -54,6 +54,15 @@ jobs:
54
run: .github/jobs/baseinstall.sh ${{ matrix.role }}
55
- name: Run webstandard tests (W3C, WCAG)
56
run: .github/jobs/webstandard.sh ${{ matrix.test }} ${{ matrix.role }}
57
+ - name: dump the db
58
+ if: ${{ !cancelled() }}
59
+ run: mysqldump -uroot -proot --quick --max_allowed_packet=1024M domjudge > /tmp/db.sql
60
+ - name: Upload database dump for debugging
61
62
+ uses: actions/upload-artifact@v4
63
+ with:
64
+ name: DB-dump
65
+ path: /tmp/db.sql
66
- name: Upload all logs/artifacts
67
if: ${{ !cancelled() }}
68
uses: actions/upload-artifact@v4
0 commit comments