diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..7eadda7b31d8297073572b103cd5275561190eae --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,26 @@ +################################################################################################################### +# DO NOT MODIFY THIS FILE +# This file is the ci/cd pipeline that will be used to test your assignment +################################################################################################################### + +variables: + GIT_SUBMODULE_STRATEGY: recursive + GIT_SUBMODULE_FORCE_HTTPS: "true" + DOCKER_HOST: tcp://docker:2375 + DOCKER_TLS_CERTDIR: + DOCKER_DRIVER: overlay2 + +stages: + - dojo + +dojo: + stage: dojo + tags: + - dojo_assignment + services: + - docker:24.0.6-dind + image: + name: dojohesso/dojo_assignment_checker:latest + script: + - dojo_assignment_checker + allow_failure: false \ No newline at end of file