Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CS320
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LARA
CS320
Commits
4c14ca22
Commit
4c14ca22
authored
1 month ago
by
Samuel Chassot
Browse files
Options
Downloads
Patches
Plain Diff
remove config
parent
710911fa
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
config/.gitkeep
+0
-0
0 additions, 0 deletions
config/.gitkeep
config/grading-gitlab-ci.yml
+0
-44
0 additions, 44 deletions
config/grading-gitlab-ci.yml
with
0 additions
and
44 deletions
config/.gitkeep
deleted
100644 → 0
+
0
−
0
View file @
710911fa
This diff is collapsed.
Click to expand it.
config/grading-gitlab-ci.yml
deleted
100644 → 0
+
0
−
44
View file @
710911fa
# 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
:
"
😎"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment