forked from geoserver/geoserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
33 lines (33 loc) · 753 Bytes
/
.travis.yml
File metadata and controls
33 lines (33 loc) · 753 Bytes
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
sudo: false
cache:
directories:
- "$HOME/.m2"
language: java
before_script:
- cd src
script:
- rm -rf /home/travis/.m2/repository/org/apache/xmlgraphics/fop
- mvn -B -U -T2 -fae -Prelease clean install -Dtest.maxHeapSize=512M -Djava.awt.headless=true
notifications:
email:
on_success: never
on_failure: never
branches:
only:
- master
- 2.8.x
os:
- linux
- osx
matrix:
allow_failures:
- os: osx
include:
# additional builds on linux w/ openjdk7 and oraclejdk8
- os: linux
jdk: openjdk7
- os: linux
jdk: oraclejdk8
before_install:
# JAVA_HOME is not available on OSX, set it to allow Maven run
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then export JAVA_HOME=$(/usr/libexec/java_home); fi