forked from apache/beam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
36 lines (30 loc) · 1.1 KB
/
.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
32
33
34
35
36
language: java
sudo: false
notifications:
email:
# Group email notifications are disabled for now, since we cannot do it on a per-branch basis.
# Right now, it would trigger a notification for each fork, which generates a lot of spam.
# recipients:
on_success: change
on_failure: always
matrix:
include:
# On OSX, run with default JDK only.
- os: osx
env: MAVEN_OVERRIDE=""
# On Linux, run with specific JDKs only.
- os: linux
env: CUSTOM_JDK="oraclejdk8" MAVEN_OVERRIDE="-DforkCount=0"
- os: linux
env: CUSTOM_JDK="oraclejdk7" MAVEN_OVERRIDE="-DforkCount=0"
- os: linux
env: CUSTOM_JDK="openjdk7" MAVEN_OVERRIDE="-DforkCount=0"
before_install:
- 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
install:
- travis_retry mvn -B install clean -U -DskipTests=true
script:
- travis_retry mvn -B $MAVEN_OVERRIDE install -U
- travis_retry travis/test_wordcount.sh