Typicalc/.gitlab-ci.yml

11 lines
500 B
YAML
Raw Normal View History

2021-01-27 09:24:54 +00:00
build:
script:
- file src/main/resources/language/translation_de.properties | rg UTF-8
2021-01-30 12:52:54 +00:00
- mvn -Dmaven.repo.local=/tmp/m2/repository -Duser.home=/tmp checkstyle:check jacoco:prepare-agent test jacoco:report
2021-06-15 09:58:01 +00:00
- python3 ./cover2cover.py target/site/jacoco/jacoco.xml src/main/java > target/site/cobertura.xml
- python3 ./source2filename.py target/site/cobertura.xml
- ./calcCoverage.sh < target/site/cobertura.xml
artifacts:
reports:
2021-01-28 13:44:11 +00:00
cobertura: target/site/cobertura.xml