mirror of
https://github.com/itplr-kosit/validator.git
synced 2026-05-26 01:05:38 +00:00
#11 jdk11 support
This commit is contained in:
parent
248f460500
commit
70149817bf
17 changed files with 391 additions and 149 deletions
29
.gitlab-ci.yml
Normal file
29
.gitlab-ci.yml
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
image: maven:latest
|
||||
|
||||
variables:
|
||||
MAVEN_CLI_OPTS: " --batch-mode -Dmaven.repo.local=repository -Dfile.encoding=UTF-8"
|
||||
|
||||
cache:
|
||||
paths:
|
||||
- repository
|
||||
|
||||
build-validator:
|
||||
stage: build
|
||||
script:
|
||||
- mvn $MAVEN_CLI_OPTS -Pjava-11,java-8,gitlab verify
|
||||
|
||||
artifacts:
|
||||
name: build-results
|
||||
paths:
|
||||
- target/*.jar
|
||||
reports:
|
||||
junit:
|
||||
- target/surefire-reports/*.xml
|
||||
- target/failsafe-reports/*.xml
|
||||
|
||||
#deploy:
|
||||
# stage: deploy
|
||||
# script:
|
||||
# - mvn $MAVEN_CLI_OPTS deploy
|
||||
# only:
|
||||
# - master
|
||||
Loading…
Add table
Add a link
Reference in a new issue