-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
35 lines (27 loc) · 892 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
language: java
dist: trusty
sudo: required
install:
- wget -N http://chromedriver.storage.googleapis.com/2.35/chromedriver_linux64.zip -P ~/
- unzip ~/chromedriver_linux64.zip -d ~/
- rm ~/chromedriver_linux64.zip
- sudo mv -f ~/chromedriver /usr/local/share/
- sudo chmod +x /usr/local/share/chromedriver
- sudo ln -s /usr/local/share/chromedriver /usr/local/bin/chromedriver
script:
- whereis google-chrome-stable
- whereis chromedriver
- google-chrome-stable -version
- chromedriver -version
# Second jacoco execution is needed for taking into account the coverage of non-itests classes
# from integration tests, collected on first execution
- mvn clean install -Pextras,coverage,checkstyle --errors ; mvn jacoco:prepare-agent jacoco:report -Pcoverage
jdk:
- openjdk8
- oraclejdk9
service:
- docker
addons:
- chrome: stable
after_success:
- bash <(curl -s https://codecov.io/bash)