forked from msgpack/msgpack-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (29 loc) · 665 Bytes
/
Copy path.travis.yml
File metadata and controls
34 lines (29 loc) · 665 Bytes
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
language: scala
# With xenial, `Installing oraclejdk8` fails due to "Expected feature release number in range of 9 to 14, but got: 8"
dist: trusty
cache:
directories:
- $HOME/.m2/repository/
- $HOME/.ivy2/cache/
- $HOME/.sbt/boot/
- $HOME/.coursier
sudo: false
branches:
only:
- develop
matrix:
include:
- env: PROJECT=checkstyle
jdk: oraclejdk8
script:
- ./sbt jcheckStyle
- env: PROJECT=java8
jdk: oraclejdk8
script:
- ./sbt test
- ./sbt test -J-Dmsgpack.universal-buffer=true
- env: PROJECT=java11
jdk: openjdk11
script:
- ./sbt test
- ./sbt test -J-Dmsgpack.universal-buffer=true