Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CS320
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Shen Chen
CS320
Commits
69062692
Commit
69062692
authored
3 years ago
by
Rodrigo Raya
Browse files
Options
Downloads
Patches
Plain Diff
remove yml file
parent
bde24bce
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
grading-gitlab-ci.yml
+0
-51
0 additions, 51 deletions
grading-gitlab-ci.yml
with
0 additions
and
51 deletions
grading-gitlab-ci.yml
deleted
100644 → 0
+
0
−
51
View file @
bde24bce
# 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
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