Skip to content
Snippets Groups Projects
Commit f27a9844 authored by Andrew Morton's avatar Andrew Morton
Browse files

Added .gitlab-ci.yml

parent 439a3c52
Branches
No related tags found
No related merge requests found
stages:
- check_elig
- validate_tests
- validate_progs
- submit
check_submitter_eligibility:
stage: check_elig
only:
- master
tags:
- "swen90006-tourney"
script:
- python3 ~/swen-tourney/frontend.py check_eligibility $(realpath $(pwd))
allow_failure: false
validate_tests:
stage: validate_tests
only:
- master
tags:
- "swen90006-tourney"
script:
- python3 ~/swen-tourney/frontend.py validate_tests $(realpath $(pwd))
allow_failure: false
validate_progs:
stage: validate_progs
only:
- master
tags:
- "swen90006-tourney"
script:
- python3 ~/swen-tourney/frontend.py validate_progs $(realpath $(pwd))
allow_failure: false
submit:
stage: submit
only:
- master
tags:
- "swen90006-tourney"
script:
- python3 ~/swen-tourney/frontend.py submit $(realpath $(pwd))
allow_failure: false
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment