-
Notifications
You must be signed in to change notification settings - Fork 9
/
.travis.yml
55 lines (45 loc) · 1.03 KB
/
.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#sudo: true
#services:
# - docker
#before_install:
# - docker pull thomastoye/kairosdb-scala-driver-it
sudo: required
dist: trusty
language: scala
scala:
- 2.11.11
jdk:
- oraclejdk8
addons:
# https://github.com/travis-ci/travis-ci/issues/5227#issuecomment-165131913
hosts:
- woken
hostname: woken
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
before_script:
- jdk_switcher use $JDK
script:
# Your normal script
# TODO: put back coverage
- sbt ++$TRAVIS_SCALA_VERSION -J-XX:ReservedCodeCacheSize=256M clean test
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
env:
global: []
#- secure: hwSS
after_success:
#- '[[ $TRAVIS_BRANCH == "master" ]] && { sbt publish; };'
- "sbt coverageReport coveralls"
notifications:
webhooks:
urls:
- 'https://webhook.atomist.com/travis'
on_cancel: always
on_error: always
on_start: always
on_failure: always
on_success: always