27 lines
531 B
YAML
27 lines
531 B
YAML
stages:
|
|
- lint
|
|
- build
|
|
|
|
checkstyle:
|
|
stage: lint
|
|
image: gradle:9.3.1-jdk25
|
|
script:
|
|
- gradle checkstyleMain checkstyleTest
|
|
artifacts:
|
|
when: always
|
|
paths:
|
|
- build/reports/checkstyle/main.html
|
|
- build/reports/checkstyle/test.html
|
|
expose_as: 'Checkstyle Report'
|
|
expire_in: 1 week
|
|
rules:
|
|
- when: manual
|
|
|
|
compile-check:
|
|
stage: build
|
|
image: gradle:9.3.1-jdk25
|
|
script:
|
|
- gradle compileTestJava
|
|
rules:
|
|
- when: manual
|