My fork of airsonic with experimental fixes and improvements. See branch "custom"
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
airsonic-custom/.travis.yml

34 lines
971 B

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: "airsonic@tutanota.com"
build_command_prepend:
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.
- rm "${JAVA_HOME}/lib/security/cacerts"
- ln -s /etc/ssl/certs/java/cacerts "${JAVA_HOME}/lib/security/cacerts"
- jdk: openjdk11
- jdk: openjdk12
- jdk: openjdk13