forked from playframework/play-scala-seed.g8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
30 lines (25 loc) · 975 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
language: scala
scala: 2.12.8
script: $SCRIPT
env:
matrix:
- SCRIPT=scripts/test-sbt [email protected]
- SCRIPT=scripts/test-sbt [email protected]
- SCRIPT=scripts/test-gradle [email protected]
- SCRIPT=scripts/test-gradle [email protected]
matrix:
fast_finish: true
allow_failures:
- env: SCRIPT=scripts/test-gradle [email protected] # current gradle doesn't support play 2.7
- env: SCRIPT=scripts/test-gradle [email protected] # current gradle doesn't support play 2.7
before_install: curl -Ls https://git.io/jabba | bash && . ~/.jabba/jabba.sh
install: jabba install "$TRAVIS_JDK" && jabba use "$_" && java -Xmx32m -version
cache:
directories:
- "$HOME/.gradle/caches"
- "$HOME/.ivy2/cache"
- "$HOME/.jabba/jdk"
- "$HOME/.sbt"
before_cache:
- find $HOME/.ivy2 -name "ivydata-*.properties" -delete
- find $HOME/.sbt -name "*.lock" -delete