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