.travis.yml 922 字节
Newer Older
V
vongosling 已提交
1 2
notifications:
  email:
V
vongosling 已提交
3 4
    recipients:
      - dev@rocketmq.incubator.apache.org
V
vongosling 已提交
5 6
  on_success: change
  on_failure: always
7 8 9

language: java

Y
yukon 已提交
10 11
matrix:
  include:
V
vongosling 已提交
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
  # On OSX, run with default JDK only.
  - os: osx
  # On Linux, run with specific JDKs only.
  - os: linux
    env: CUSTOM_JDK="oraclejdk8"
  - os: linux
    env: CUSTOM_JDK="oraclejdk7"
  - os: linux
    env: CUSTOM_JDK="openjdk7"

before_install:
  - echo 'MAVEN_OPTS="$MAVEN_OPTS -Xmx1024m -XX:MaxPermSize=512m -XX:+BytecodeVerificationLocal"' >> ~/.mavenrc
  - cat ~/.mavenrc
  - if [ "$TRAVIS_OS_NAME" == "osx" ]; then export JAVA_HOME=$(/usr/libexec/java_home); fi
  - if [ "$TRAVIS_OS_NAME" == "linux" ]; then jdk_switcher use "$CUSTOM_JDK"; fi
27

V
vongosling 已提交
28 29 30 31 32 33 34 35
#os:
#  - linux
#  - osx
#jdk:
#  - oraclejdk8
#  - oraclejdk7
#  - openjdk7

V
vongosling 已提交
36

37 38
script:
  - travis_retry mvn -B clean apache-rat:check package jacoo:report coveralls:report
V
vongosling 已提交
39 40

after_success:
41
  - mvn sonar:sonar