Skip to content

Commit b917bb6

Browse files
committed
Update travis configuration
1 parent f8fa375 commit b917bb6

File tree

2 files changed

+26
-9
lines changed

2 files changed

+26
-9
lines changed

.editorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@ trim_trailing_whitespace = true
1111
[*.md]
1212
trim_trailing_whitespace = false
1313
insert_final_newline = false
14+
15+
[*.yml]
16+
indent_style = space

.travis.yml

+23-9
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,35 @@
11
language: java
2-
jdk:
3-
- openjdk8
4-
# - oraclejdk8
5-
# - oraclejdk9
2+
matrix:
3+
include:
4+
- os: linux
5+
dist: bionic
6+
jdk:
7+
- openjdk11
8+
9+
- os: linux
10+
dist: trusty
11+
addons:
12+
apt:
13+
sources:
14+
- ubuntu-toolchain-r-test
15+
packages:
16+
- g++-7
17+
jdk:
18+
- openjdk8
19+
20+
- os: osx
21+
622

723
## Uncomment section below and the packages above to build unreleased snapshots of karmaresearch/vlog into vlog4j-base jar
8-
#before_install:
9-
# - sudo apt-get install gcc-5 -y
10-
# - eval “CC=gcc-5 && CXX=g++-5”
11-
# - sh ./build-vlog-library.sh
24+
before_install:
25+
- sh ./build-vlog-library.sh
1226

1327
install: mvn install $OPTIONS -DskipTests=true
1428

1529
after_success:
1630
- mvn clean test jacoco:report coveralls:report
1731

18-
dist: trusty
32+
dist: bionic
1933
sudo: false
2034

2135
cache:

0 commit comments

Comments
 (0)