-
Notifications
You must be signed in to change notification settings - Fork 346
/
Copy path.travis.yml
42 lines (36 loc) · 1018 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
41
42
language: scala
sudo: false
matrix:
include:
- scala: 2.10.6
script: ./sbt ++$TRAVIS_SCALA_VERSION clean test
- scala: 2.11.8
script: ./sbt ++$TRAVIS_SCALA_VERSION clean coverage test coverageReport mimaReportBinaryIssues docs/makeMicrosite
after_success:
- bash <(curl -s https://codecov.io/bash)
before_install:
- export PATH=${PATH}:./vendor/bundle
install:
- rvm use 2.2.3 --install --fuzzy
- gem update --system
- gem install sass
- gem install jekyll -v 3.2.1
cache:
directories:
- $HOME/.sbt/0.13/dependency
- $HOME/.sbt/boot/scala*
- $HOME/.sbt/launchers
- $HOME/.ivy2/cache
- $HOME/.nvm
before_cache:
- du -h -d 1 $HOME/.ivy2/cache
- du -h -d 2 $HOME/.sbt/
- find $HOME/.sbt -name "*.lock" -type f -delete
- find $HOME/.ivy2/cache -name "ivydata-*.properties" -type f -delete
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/83f5f34730d7a004992f
on_success: change
on_failure: always
on_start: never