Browse Source
Travis-CI: Switch to Ubuntu Xenial and openjdks
accumulation-v4.7
Joachim Klein
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
6 deletions
-
.travis.yml
|
|
@ -1,17 +1,16 @@ |
|
|
# Travis CI configuration |
|
|
# Travis CI configuration |
|
|
|
|
|
|
|
|
# trusty (has build-essential) + Java |
|
|
|
|
|
dist: trusty |
|
|
|
|
|
|
|
|
# xenial (has build-essential) + Java |
|
|
|
|
|
dist: xenial |
|
|
# we are requiring VM instead of Docker builds due to sporadic nailgun test suite failures |
|
|
# we are requiring VM instead of Docker builds due to sporadic nailgun test suite failures |
|
|
sudo: required |
|
|
sudo: required |
|
|
language: java |
|
|
language: java |
|
|
|
|
|
|
|
|
# we test for JDK 8,9,10,11 |
|
|
|
|
|
|
|
|
# we test for JDK 8,10,11 |
|
|
jdk: |
|
|
jdk: |
|
|
- oraclejdk8 |
|
|
|
|
|
- oraclejdk9 |
|
|
|
|
|
|
|
|
- openjdk8 |
|
|
- openjdk10 |
|
|
- openjdk10 |
|
|
# - openjdk11 |
|
|
|
|
|
|
|
|
- openjdk11 |
|
|
|
|
|
|
|
|
# compile and run the test suite |
|
|
# compile and run the test suite |
|
|
# we manually set PRISM_JAVA to the java on the PATH as the python invocation of prism-auto fiddles with the PATH variable... |
|
|
# we manually set PRISM_JAVA to the java on the PATH as the python invocation of prism-auto fiddles with the PATH variable... |
|
|
|