mirror of
https://github.com/airsonic/airsonic.git
synced 2025-10-03 01:39:34 +02:00
Use codecov for coverage visualisation
This commit is contained in:
parent
80ccd8234e
commit
135886374a
4 changed files with 23 additions and 0 deletions
|
@ -22,6 +22,8 @@ matrix:
|
|||
build_command: mvn -B -q clean package -DskipTests=true
|
||||
branch_pattern: master
|
||||
- jdk: openjdk8
|
||||
after_success:
|
||||
- bash <(curl -s https://codecov.io/bash)
|
||||
- jdk: oraclejdk9
|
||||
before_install:
|
||||
# The OpenJDK9's CA bundle is outdated, so we're using the system's ones.
|
||||
|
|
|
@ -8,6 +8,7 @@ Airsonic
|
|||
[](https://scan.coverity.com/projects/airsonic)
|
||||
[](https://lgtm.com/projects/g/airsonic/airsonic/context:javascript)
|
||||
[](https://lgtm.com/projects/g/airsonic/airsonic/context:java)
|
||||
[](https://codecov.io/gh/airsonic/airsonic)
|
||||
|
||||
What is Airsonic?
|
||||
-----------------
|
||||
|
|
1
codecov.yml
Normal file
1
codecov.yml
Normal file
|
@ -0,0 +1 @@
|
|||
comment: false
|
19
pom.xml
19
pom.xml
|
@ -333,6 +333,25 @@
|
|||
</pluginManagement>
|
||||
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.jacoco</groupId>
|
||||
<artifactId>jacoco-maven-plugin</artifactId>
|
||||
<version>0.8.5</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>prepare-agent</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>report</id>
|
||||
<phase>test</phase>
|
||||
<goals>
|
||||
<goal>report</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue