Explicitly lay out the matrix for Travis.
This means that we only have one run on macOS, using the default JDK. Travis does not support JDK-switching on macOS.
This commit is contained in:
parent
017f6586d7
commit
5ac3a79234
15
.travis.yml
15
.travis.yml
|
@ -1,8 +1,17 @@
|
|||
sudo: true
|
||||
|
||||
language: java
|
||||
os:
|
||||
- linux
|
||||
- osx
|
||||
|
||||
matrix:
|
||||
include:
|
||||
- os: linux
|
||||
jdk: openjdk6
|
||||
- os: linux
|
||||
jdk: oraclejdk7
|
||||
- os: linux
|
||||
jdk: oraclejdk8
|
||||
- os: osx
|
||||
|
||||
script:
|
||||
- mvn -Dparallel=methods -DthreadCount=4 install
|
||||
|
||||
|
|
Loading…
Reference in New Issue