-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
70 lines (66 loc) · 1.48 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
language: java
matrix:
include:
## https://docs.travis-ci.com/user/reference/trusty/
## has newer Maven
- os: linux
sudo: false
dist: trusty
jdk: oraclejdk8
install: true
env: FAILURES_ALLOWED=false
addons:
apt:
packages:
## RPM
- rpm
## DEB
- fakeroot
## OpenJDK should work too, but TravisCI has no up2date Ubuntu-Image, makes it impossible to install OpenJFX
- os: linux
sudo: false
dist: trusty
jdk: oraclejdk9
install: true
env: FAILURES_ALLOWED=false
addons:
apt:
packages:
## RPM
- rpm
## DEB
- fakeroot
## has older Maven
- os: linux
sudo: false
dist: precise
jdk: oraclejdk8
env: FAILURES_ALLOWED=false
addons:
apt:
packages:
## RPM
- rpm
## DEB
- fakeroot
## use different OSX versions
## OS X 10.11
- os: osx
osx_image: xcode8
env: FAILURES_ALLOWED=false
## OS X 10.12
- os: osx
osx_image: xcode8.3
env: FAILURES_ALLOWED=false
## OS X 10.12
- os: osx
osx_image: xcode9.2
env: FAILURES_ALLOWED=false
# http://stackoverflow.com/questions/35128777/travis-ci-build-failed#comment58070003_35153221
before_install:
- chmod +x gradlew
script:
- ./gradlew clean install
- ./gradlew check
notifications:
email: false