forked from FibreFoX/javafx-gradle-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
36 lines (30 loc) · 762 Bytes
/
.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
## http://blog.travis-ci.com/2015-10-14-opening-up-ubuntu-trusty-beta/
matrix:
include:
- os: linux
sudo: required
dist: trusty
jdk: oraclejdk8
env: FAILURES_ALLOWED=false
- os: linux
sudo: false
jdk: oraclejdk8
env: FAILURES_ALLOWED=true
# older than 1.8.0_40 will fail compiling since javafx-gradle-plugin 8.8.0
- os: osx
osx_image: xcode8
env: FAILURES_ALLOWED=false
allow_failures:
- env: FAILURES_ALLOWED=true
# http://stackoverflow.com/questions/35128777/travis-ci-build-failed#comment58070003_35153221
before_install:
- chmod +x gradlew
script:
- ./gradlew clean install
- ./gradlew check
branches:
only:
- master
notifications:
email: false