Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
meisterT committed Aug 27, 2024
1 parent e81e4aa commit 680f06c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ jobs:
container:
image: domjudge/gitlabci:24.04
options: --privileged --cgroupns=host --init
env:
REQUESTS_CA_BUNDLE: /tmp/server.crt
services:
sqlserver:
image: mariadb
Expand All @@ -44,10 +42,10 @@ jobs:
- name: Check nginx2
run: openssl x509 -in /tmp/server.crt -text -noout
- name: Check nginx3
run: python3 -c "import requests; print(requests.get('https://localhost/domjudge/api/contests').text)"
run: export REQUESTS_CA_BUNDLE=/tmp/server.crt && python3 -c "import requests; print(requests.get('https://localhost/domjudge/api/contests').text)"
- name: Testing submit client
working-directory: submit
run: make check-full
run: export REQUESTS_CA_BUNDLE=/tmp/server.crt && make check-full
- name: Configure judgehost
run: sudo cp /opt/domjudge/judgehost/etc/sudoers-domjudge /etc/sudoers.d/ && sudo chmod 400 /etc/sudoers.d/sudoers-domjudge && cat /opt/domjudge/judgehost/etc/sudoers-domjudge
- name: Create user
Expand Down

0 comments on commit 680f06c

Please sign in to comment.