forked from scalacenter/scalafix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
31 lines (29 loc) · 814 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
jdk:
- openjdk8
stages:
- name: test
- name: release
if: (branch = master AND type = push) OR (tag IS present)
before_install:
- if [ "$TRAVIS_BUILD_STAGE_NAME" = 'Release' ]; then
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.9.4;
export PATH=$HOME/.yarn/bin:$PATH;
fi
jobs:
include:
- stage: release
script: ./sbt docs/docusaurusPublishGhpages
cache:
directories:
- "$HOME/.sbt"
- "$HOME/.ivy2/cache"
- "$HOME/.coursier"
- "$HOME/.cache"
yarn: true
before_cache:
- du -h -d 1 $HOME/.ivy2/cache
- du -h -d 2 $HOME/.sbt/
- find $HOME/.sbt -name "*.lock" -type f -delete
- find $HOME/.ivy2/cache -name "ivydata-*.properties" -type f -delete
- find $HOME/.ivy2/cache -name "*scalafix*.xml" -type f -delete
- rm -rf $HOME/.ivy2/local