forked from cquiroz/scala-java-time
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
44 lines (35 loc) · 857 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
43
44
# This file enables the Travis continuous integration system, which
# automatically builds and tests the project for each GitHub commit or
# pull request on three separate JDKs.
#
# For more information, see https://travis-ci.org
sudo: true
language: scala
jdk:
- oraclejdk8
scala:
- 2.10.6
- 2.11.8
- 2.12.0
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/.ivy2
- $HOME/.m2
- $HOME/.coursier
env:
- COURSIER_NO_TERM=1
script:
- sbt ++$TRAVIS_SCALA_VERSION clean scalajavatimeJVM/test
- sbt ++$TRAVIS_SCALA_VERSION clean scalajavatimeJS/test
- sbt docs/makeMicrosite
#- sbt clean coverage test &&
# sbt coverageAggregate
after_success:
#- sbt coveralls