summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: bd45fa7a6239f05d2235abd60d1aa98cf77fa1c4 (plain) (blame)
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
language: scala

scala:
  - 2.10.7
  - 2.11.12
  - 2.12.8
  - 2.13.0-RC1

jdk:
  - oraclejdk8

matrix:
  include:
  - jdk: openjdk11
    scala: 2.12.8

script:
  - sbt "++ ${TRAVIS_SCALA_VERSION}!" test mimaReportBinaryIssues

before_cache:
  - find $HOME/.ivy2 -name "ivydata-*.properties" -print -delete
  - find $HOME/.sbt  -name "*.lock"               -print -delete

cache:
  directories:
    - $HOME/.ivy2/cache
    - $HOME/.sbt/boot

notifications:
  email:
    - johannes@spray.io
    - mathias@spray.io