source: josm/trunk/.travis.yml@ 14033

Last change on this file since 14033 was 13240, checked in by Don-vip, 6 years ago

see #15630 - CI tweaks

File size: 374 bytes
Line 
1language: java
2os:
3 - linux
4 - osx
5matrix:
6 include:
7 - os: linux
8 dist: trusty
9 sudo: required
10 jdk:
11 - oraclejdk9
12 - oraclejdk8
13 - openjdk8
14 - os: osx
15 osx_image: xcode9.2
16before_install:
17 - >
18 case "${TRAVIS_OS_NAME:-linux}" in
19 linux)
20 ;;
21 osx)
22 brew update
23 brew install ant
24 ;;
25 esac;
Note: See TracBrowser for help on using the repository browser.