Skip to content
Snippets Groups Projects
Commit 2a774853 authored by Dennis Eisold's avatar Dennis Eisold
Browse files

Gitlab-CI Test

parent 3947f267
No related branches found
No related tags found
No related merge requests found
Pipeline #152 passed with stages
in 2 minutes and 22 seconds
......@@ -6,18 +6,23 @@ stages:
- test
- deploy
job clean:
Clean Project files:
stage: clean
script: mvn clean
job compile:
Compile new version:
stage: build
script: mvn compile
job test:
Run JUnit tests and verify:
stage: test
script: mvn test
script: mvn verify
artifacts:
reports:
junit:
- target/surefire-reports/TEST-*.xml
- target/failsafe-reports/TEST-*.xml
job deploy:
Deploy new version as Release:
stage: deploy
script: mvn assembly:assembly
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment