Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
geomultisens
gms-aux
Commits
2669a84d
Commit
2669a84d
authored
Aug 23, 2017
by
Daniel Eggert
Browse files
Add .gitlab-ci.yml
parent
a498117a
Changes
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
2669a84d
# These are the default stages.
# You don't need to explicitly define them.
# But you could define any stages you want.
stages
:
-
build
-
test
-
deploy
# This is the name of the job.
# You can choose it freely.
maven_build
:
# A job is always executed within a stage.
# If no stage is set, it defaults to 'test'.
stage
:
test
# Since we require Maven for this job,
# we can restrict the job to runners with a certain tag.
# Of course, it is our duty to actually configure a runner
# with the tag 'maven' and a working maven installation
tags
:
-
maven
# Here you can execute arbitrate terminal commands.
# If any of the commands returns a non zero exit code the job fails.
script
:
-
echo "Building project with maven"
-
mvn verify
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment