forked from airsonic/airsonic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
31 lines (30 loc) · 885 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
language: java
cache:
directories:
- $HOME/.m2
script:
- mvn verify -B -P integration-test
matrix:
include:
- name: coverity
script:
- echo "coverity scan script"
install:
- echo "coverity scan install"
addons:
coverity_scan:
project:
name: "airsonic/airsonic"
description: "A Free and Open Source community driven media server"
notification_email: "[email protected]"
build_command_prepend:
build_command: mvn -B -q clean package -DskipTests=true
branch_pattern: master
- jdk: openjdk8
- jdk: oraclejdk9
before_install:
# The OpenJDK9's CA bundle is outdated, so we're using the system's ones.
- rm "${JAVA_HOME}/lib/security/cacerts"
- ln -s /etc/ssl/certs/java/cacerts "${JAVA_HOME}/lib/security/cacerts"
- jdk: openjdk11
- jdk: openjdk12