-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy path.travis.yml
40 lines (32 loc) · 873 Bytes
/
.travis.yml
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
35
36
37
38
39
40
language: scala
dist: trusty
# required: until bug is fixed: https://github.com/travis-ci/travis-ci/issues/3259
sudo: required
addons:
apt:
packages:
- oracle-java8-installer
- google-chrome-stable
- unzip
before_install:
# Install Chrome driver
- wget http://chromedriver.storage.googleapis.com/2.24/chromedriver_linux64.zip
- unzip chromedriver_linux64.zip
- sudo chmod u+x chromedriver
- sudo mv chromedriver /usr/bin/
# For selenium in headless linux system
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
scala:
- 2.11.7
- 2.11.8
- 2.11.12
- 2.12.10
jdk:
- oraclejdk8
script:
- sbt clean coverage test coverageReport
- sbt vegaLiteSpec/clean vegaLiteSpec/test mkVegaModel
after_success:
- bash <(curl -s https://codecov.io/bash)