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

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

see #16819 - Travis: display output of failed tests only to avoid exceeding the maximum log length

File size: 735 bytes
Line 
1language: java
2script:
3 - ant -version
4 - (eval "$ANT_INVOCATION $(test ${TRAVIS_JDK_VERSION:0:4} = open && echo -DnoJavaFX=true) test-unit-hardfail")
5 - "grep -L ', Failures: 0, Errors: 0, ' test/report/*.txt | xargs cat"
6os: linux
7dist: trusty
8env:
9 - ANT_INVOCATION="xvfb-run ant -Dtest.headless=false"
10 - ANT_INVOCATION="ant -Dtest.headless=true"
11jdk:
12 - oraclejdk11
13 - oraclejdk10
14 - openjdk8
15matrix:
16 include:
17 - os: osx
18 osx_image: xcode9.2
19 jdk: ~
20 env: ANT_INVOCATION="ant -Dtest.headless=true"
21before_install:
22 - wget https://www.apache.org/dist/ant/binaries/apache-ant-1.10.5-bin.tar.gz
23 - tar -xzvf apache-ant-1.10.5-bin.tar.gz
24 - export PATH=`pwd`/apache-ant-1.10.5/bin:$PATH
Note: See TracBrowser for help on using the repository browser.