Changeset View
Changeset View
Standalone View
Standalone View
.gitlab-ci.yml
Show All 32 Lines | artifacts: | ||||
reports: | reports: | ||||
junit: build/test-results/test/TEST-*.xml | junit: build/test-results/test/TEST-*.xml | ||||
paths: | paths: | ||||
- build/reports/tests/test | - build/reports/tests/test | ||||
- build/jacocoHtml | - build/jacocoHtml | ||||
coverage: '/\d+\.\d+ % covered/' | coverage: '/\d+\.\d+ % covered/' | ||||
static-analysis: | static-analysis: | ||||
stage: test | stage: test | ||||
Hackintosh5: Do we really want spotBugs on tests? | |||||
Not Done Inline ActionsJust looked at old stuff, Info Screen accepted D226 (closed cos out of date) which removed spotbugsTest in favour of spotbugsMain only Hackintosh5: Just looked at old stuff, Info Screen accepted D226 (closed cos out of date) which removed… | |||||
Done Inline ActionsI don't know... code quality in the tests sounds important to me, even if they're not in prod CLOVIS: I don't know... code quality in the tests sounds important to me, even if they're not in prod | |||||
image: clovisai/wildfyre-java:latest | image: clovisai/wildfyre-java:latest | ||||
script: | script: | ||||
- ./gradlew --no-daemon findbugsMain findbugsTest | - ./gradlew --no-daemon spotbugsMain spotbugsTest | ||||
artifacts: | artifacts: | ||||
paths: | paths: | ||||
- build/reports/findbugs/main.html | - build/reports/spotbugs/main.html | ||||
- build/reports/findbugs/test.html | - build/reports/spotbugs/test.html | ||||
dokka: | dokka: | ||||
stage: test | stage: test | ||||
image: java:latest | image: java:latest | ||||
script: | script: | ||||
- ./gradlew --no-daemon dokka | - ./gradlew --no-daemon dokka | ||||
artifacts: | artifacts: | ||||
paths: | paths: | ||||
- build/docs/dokka | - build/docs/dokka |
Do we really want spotBugs on tests?