From 690626926505a4703b67cfb9db06500f9bbc27cd Mon Sep 17 00:00:00 2001 From: rjraya <rodrigo.raya@epfl.ch> Date: Tue, 28 Sep 2021 23:12:04 +0200 Subject: [PATCH] remove yml file --- grading-gitlab-ci.yml | 51 ------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 grading-gitlab-ci.yml diff --git a/grading-gitlab-ci.yml b/grading-gitlab-ci.yml deleted file mode 100644 index 4b7e92f..0000000 --- a/grading-gitlab-ci.yml +++ /dev/null @@ -1,51 +0,0 @@ -# This CI config file is not used in this repository but instead referenced -# from each student project (https://gitlab.epfl.ch/help/ci/pipelines/settings#custom-ci-configuration-path) -# and used to grade them. - -workflow: - rules: - # Don't run the CI on commit messages contain "[no-ci]", used to deploy - # assignments without overloading the CI. - - if: $CI_COMMIT_MESSAGE !~ /\[no-ci\]/ - -stages: - - build - - grade - -compile: - stage: build - timeout: 15m - image: laraepfl/labs - tags: - - cs320 - except: - - tags - - master - script: - - sbt packageSubmission - # Output of this job that needs to be stored to be reused in the grade job below - artifacts: - expire_in: 1 day - paths: - - binaries.jar - -grade: - stage: grade - timeout: 15m - except: - - tags - - master - tags: - - cs320 - image: - name: laraepfl/labs:${CI_COMMIT_BRANCH} - entrypoint: [""] - allow_failure: true - before_script: - - mkdir -p /shared/submission/ - - cp binaries.jar /shared/submission/binaries.jar - script: - - cd /grader - - /grader/grade - - cat /shared/txtFeedback.txt - - grep -q congratulations /shared/txtFeedback.txt -- GitLab