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 5da3902 commit 6b789e7Copy full SHA for 6b789e7
.github/workflows/integration.yml
@@ -78,12 +78,22 @@ jobs:
78
grep "No submissions in queue" /opt/domjudge/judgehost/log/judge*-0.log && break
79
done
80
- name: dump the db
81
+ if: ${{ !cancelled() }}
82
run: mysqldump -uroot -proot domjudge > /tmp/db.sql
- - name: Upload artifact for debugging
83
+ - name: Upload database dump for debugging
84
85
uses: actions/upload-artifact@v3
86
with:
87
name: DB-dump
88
path: /tmp/db.sql
89
+ - name: Upload all logs/artifacts
90
91
+ uses: actions/upload-artifact@v4
92
+ with:
93
+ name: Logs
94
+ path: |
95
+ /var/log/nginx
96
+ /opt/domjudge/domserver/webapp/var/log/*.log
97
- name: Verifying submissions
98
shell: bash
99
run: |
0 commit comments