From 4c14ca22965ebbfaefbead8a15fc43a70b7a0586 Mon Sep 17 00:00:00 2001
From: Samuel Chassot <samuel.chassot@epfl.ch>
Date: Thu, 20 Feb 2025 10:14:09 +0000
Subject: [PATCH] remove config

---
 config/.gitkeep              |  0
 config/grading-gitlab-ci.yml | 44 ------------------------------------
 2 files changed, 44 deletions(-)
 delete mode 100644 config/.gitkeep
 delete mode 100644 config/grading-gitlab-ci.yml

diff --git a/config/.gitkeep b/config/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/config/grading-gitlab-ci.yml b/config/grading-gitlab-ci.yml
deleted file mode 100644
index 90dff62..0000000
--- a/config/grading-gitlab-ci.yml
+++ /dev/null
@@ -1,44 +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: 10m
-  image: ${DOCKER_REPO}/compile
-  tags:
-    - cs320
-  except:
-    - tags
-    - main
-  script:
-    - sbt packageSubmission
-  # Output of this job that needs to be stored to be reused in the grade job below
-  artifacts:
-    expire_in: 24h
-    paths:
-      - submission.jar
-
-grade:
-  stage: grade
-  timeout: 10m
-  except:
-    - tags
-    - main
-  tags:
-    - cs320
-  variables:
-    JAR_PATH: "${CI_PROJECT_DIR}/submission.jar"
-  image: ${DOCKER_REPO}/grader-${CI_COMMIT_BRANCH}
-  allow_failure: true
-  script: "😎"
-- 
GitLab