forked from scalalandio/catnip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
32 lines (32 loc) · 890 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
language: scala
scala:
- 2.11.12
- 2.12.11
- 2.13.2
jdk:
- openjdk8
env:
- SCALAJS_VERSION=1.1.0
- SCALAJS_VERSION=0.6.33
jobs:
exclude:
- scala: 2.11.12
env: SCALAJS_VERSION=1.1.0
jdk: openjdk8
cache:
- "~/.ivy2"
- "~/.sbt"
install:
- sudo apt-get update
- sudo apt-get install zsh
- sudo chmod +x scripts/*
- ./sbt ++$TRAVIS_SCALA_VERSION update
script: ./sbt ++$TRAVIS_SCALA_VERSION test
after_script:
- scripts/prepare-test-results-for-ci.sh
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
notifications:
email:
on_success: never
on_failure: change