-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ganesh Tiwari
committed
Jan 21, 2020
1 parent
4e6885f
commit b72b585
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
image: maven:3.6-jdk-11 | ||
|
||
include: | ||
- template: Code-Quality.gitlab-ci.yml | ||
|
||
stages: | ||
- validate | ||
- compile | ||
- test | ||
|
||
validate: | ||
stage: validate | ||
script: | ||
- mvn validate | ||
|
||
checkstyle: | ||
stage: validate | ||
script: | ||
- mvn checkstyle:check | ||
allow_failure: true | ||
|
||
compile: | ||
stage: compile | ||
script: | ||
- mvn compile | ||
|
||
test: | ||
stage: test | ||
script: | ||
- mvn test -B |