Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
Enigma
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
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
Uli Bähr
Enigma
Commits
29c386b5
Commit
29c386b5
authored
5 years ago
by
Dennis Eisold
Browse files
Options
Downloads
Patches
Plain Diff
Nach push automatisch alle Unit Tests ausführen lassen und Projekt compilieren
parent
eadec763
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+24
-5
24 additions, 5 deletions
.gitlab-ci.yml
README.md
+2
-0
2 additions, 0 deletions
README.md
with
26 additions
and
5 deletions
.gitlab-ci.yml
+
24
−
5
View file @
29c386b5
image
:
maven:latest
image
:
maven:latest
java
:
stages
:
-
clean
-
build
-
test
-
deploy
Clean Project files
:
stage
:
clean
script
:
mvn clean
Compile new version
:
stage
:
build
script
:
mvn compile
Run JUnit tests and verify
:
stage
:
test
stage
:
test
script
:
script
:
mvn verify
-
mvn verify
artifacts
:
artifacts
:
reports
:
reports
:
junit
:
junit
:
-
target/surefire-reports/TEST-*.xml
-
target/surefire-reports/TEST-*.xml
-
target/failsafe-reports/TEST-*.xml
-
target/failsafe-reports/TEST-*.xml
\ No newline at end of file
Deploy new version as Release
:
stage
:
deploy
script
:
-
mvn versions:set -DnewVersion=$CI_COMMIT_TAG
-
mvn assembly:assembly
This diff is collapsed.
Click to expand it.
README.md
+
2
−
0
View file @
29c386b5
[

](https://www.gitrepo.de/alfatrainingkurse/java/enigma/commits/master)
Link zum
[
Wiki
](
https://www.gitrepo.de/alfatrainingkurse/java/enigma/wikis/home
)
Link zum
[
Wiki
](
https://www.gitrepo.de/alfatrainingkurse/java/enigma/wikis/home
)
\ No newline at end of file
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