Update .gitlab-ci.yml to add package step

This commit is contained in:
Louis Vallat 2020-04-06 16:24:24 +00:00
parent cc458f6940
commit 07bd1ce00a

View File

@ -38,3 +38,9 @@ test: &test
stage: test
script:
- 'mvn $MAVEN_CLI_OPTS test'
# Try to package the project
package: &package
stage: package
script:
- 'mvn $MAVEN_CLI_OPTS clean package'