Test plenty of weird characters in CI job MySQL password #904
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run runpipe tests | |
on: | |
push: | |
branches-ignore: | |
- main | |
- '[0-9]+.[0-9]+' | |
- gh-readonly-queue/main/* | |
- gh-readonly-queue/main/[0-9]+.[0-9]+ | |
pull_request: | |
branches: | |
- main | |
- '[0-9]+.[0-9]+' | |
jobs: | |
runpipe: | |
runs-on: ubuntu-latest | |
container: | |
image: domjudge/gitlabci:24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create the configure file | |
run: make configure | |
- name: Do the default configure | |
run: ./configure --with-baseurl='http://localhost/domjudge/' --with-domjudge-user=domjudge --with-judgehost_chrootdir=${DIR}/chroot/domjudge | |
- name: Prepare judgehost files | |
run: make judgehost | |
- name: Run the actual runpipe tests | |
working-directory: judge/runpipe_test | |
run: make test | |