summaryrefslogblamecommitdiff
path: root/.travis.yml
blob: da939589ba4ff14dc14d902936005922d49a1789 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
               
              







              

          







                                          

                                
 

                










                                                                      
language: scala
sudo: required
dist: trusty

scala:
  - 2.12.4

jdk:
  - oraclejdk8

matrix:
  include:
  - stage: build
    env: CI_SCRIPT=ci/test-sbt.sh
  - stage: build
    env: CI_SCRIPT=ci/test-sbt-built.sh
  - stage: build
    env: CI_SCRIPT=ci/test-mill-built.sh
  - stage: build
    env: CI_SCRIPT=ci/test-mill-release.sh
  - stage: release
    env: CI_SCRIPT=ci/release.sh

script:
  - "$CI_SCRIPT"
cache:
  directories:
  - $HOME/.sbt/0.13/dependency
  - $HOME/.sbt/boot/scala*
  - $HOME/.sbt/launchers
  - $HOME/.ivy2/cache
  - $HOME/.coursier

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