Fix typo introduced in 881d4663bebc35454a61caf1967cc71c460c4eff. #1050
Workflow file for this run
This file contains hidden or 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 | |