forked from softwaremill/magnolia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
32 lines (32 loc) · 802 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
jdk:
- openjdk8
scala:
- 2.12.10
- 2.13.1
before_install:
- bash scripts/decrypt_files_if_not_pr.sh
before_cache:
- du -h -d 1 $HOME/.ivy2/
- du -h -d 2 $HOME/.sbt/
- du -h -d 4 $HOME/.coursier/
- find $HOME/.sbt -name "*.lock" -type f -delete
- find $HOME/.ivy2/cache -name "ivydata-*.properties" -type f -delete
- find $HOME/.coursier/cache -name "*.lock" -type f -delete
cache:
directories:
- "$HOME/.sbt/1.0"
- "$HOME/.sbt/boot/scala*"
- "$HOME/.sbt/cache"
- "$HOME/.sbt/launchers"
- "$HOME/.ivy2/cache"
- "$HOME/.coursier"
script:
- sbt ++$TRAVIS_SCALA_VERSION test
deploy:
- provider: script
script: sbt publishRelease
skip_cleanup: true
on:
all_branches: true
condition: $TRAVIS_SCALA_VERSION = "2.12.10" && $TRAVIS_TAG =~ ^v[0-9]+\.[0-9]+(\.[0-9]+)?