.travis.yml 996 字节
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
  # On OSX, run with default JDK only.
V
vongosling 已提交
13
  # - os: osx
V
vongosling 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26
  # 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
script:
V
vongosling 已提交
38
  - travis_retry mvn -B clean apache-rat:check
V
vongosling 已提交
39
  - travis_retry mvn -B package jacoco:report coveralls:report
V
vongosling 已提交
40 41

after_success:
42
  - mvn clean install -Pit-test
43
  - mvn sonar:sonar -Psonar-apache