forked from siddhartha-gadgil/ProvingGround
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
29 lines (24 loc) · 765 Bytes
/
.travis.yml
File metadata and controls
29 lines (24 loc) · 765 Bytes
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
# Use Docker-based container (instead of OpenVZ)
sudo: false
language: scala
scala:
- 2.12.10
jdk:
- openjdk8
# codecov
script:
# - curl -L -o ~/bin/mill https://github.com/lihaoyi/mill/releases/download/0.3.6/0.3.6 && chmod +x ~/bin/mill
# - mill bloop.integrations.mill.Bloop/install
- ./mill -i all __.compile
- ./mill -i all __.test
# http://www.scala-sbt.org/0.13/docs/Travis-CI-with-sbt.html
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.mill/ammonite/cache/
# - $HOME/.coursier/cache/
before_cache:
# Tricks to avoid unnecessary cache updates
- find $HOME/.ivy2 -name "ivydata-*.properties" -delete
# - find $HOME/.coursier/cache -name "*.lock" -type f -delete