forked from etorreborre/specs2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
64 lines (52 loc) · 1.43 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
56
57
58
59
60
61
62
63
64
# needed to get oraclejdk8
dist: trusty
language: scala
scala:
- 2.12.11
- 2.11.12
- 2.13.2
jdk:
- oraclejdk8
- openjdk11
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
before_cache:
# Cleanup the cached directories to avoid unnecessary cache updates
- find $HOME/.ivy2/cache -name "ivydata-*.properties" -print -delete
- find $HOME/.sbt -name "*.lock" -print -delete
script:
- ./.travis-test.sh coreJVM
- ./.travis-test.sh tests
- ./.travis-test.sh examplesJVM
- ./.travis-test.sh junitJVM
- ./.travis-test.sh matcherExtraJVM
- ./.travis-test.sh mockJVM
- ./.travis-test.sh scalacheckJVM
- ./.travis-test.sh scalazJVM
- ./.travis-test.sh shapelessJVM
- ./.travis-test.sh gwtJVM
- ./.travis-test.sh markdownJVM
- ./.travis-test.sh formJVM
- ./.travis-test.sh html
- ./.travis-test.sh coreJS
- ./.travis-test.sh examplesJS
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/6f43e8d682579a80ef5f
on_success: always
on_failure: always
on_start: never
# matrix:
# include:
# - scala: 2.11.12
# jdk: openjdk8
# before_script:
# - curl https://raw.githubusercontent.com/scala-native/scala-native/master/scripts/travis_setup.sh | bash -
# sudo: required
# script:
# - ./.travis-test.sh coreNative
# - ./.travis-test.sh examplesNative