-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
35 lines (29 loc) · 1.09 KB
/
.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
33
34
35
# Enables support for a docker container-based build
# which should provide faster startup times and beefier
# "machines". This is also required in order to use the
# cache configured below.
sudo: false
language: java
jdk:
- oraclejdk8
before_cache:
# The `ivydata-*.properties` & root level `*.{properties,xml}` files'
# effect on resolution time is in the noise, but they are
# re-timestamped in internal comments and fields on each run and this
# leads to travis-ci cache thrash. Kill these files before the cache
# check to avoid un-needed cache re-packing and re-upload (a ~100s
# operation).
- find $HOME/.ivy2/pants -type f -name "ivydata-*.properties" -print -delete
- rm -fv $HOME/.ivy2/pants/*.{css,properties,xml,xsl}
# The stats cache contains timestamped reports unused by CI but that
# thrash the cache. Skip caching these.
- rm -rfv $HOME/.cache/pants/stats
cache:
directories:
- $HOME/.cache/pants
- $HOME/.ivy2/pants
env:
global:
- PANTS_CONFIG_OVERRIDE="['pants.travis-ci.ini']"
script: |
yes | ./pants test publish.jar --local=/tmp/m2 --no-dryrun ::