forked from google/closure-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (34 loc) · 1.36 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
36
37
38
39
40
41
language: java
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2
# Skip the "installation" step:
# https://docs.travis-ci.com/user/customizing-the-build#Skipping-the-Installation-Step
install: true
script:
# Builds the compiler and runs tests
- mvn -Dstyle.color=always install
# Install yarn version 1.10 by downloading its install script and executing it in bash
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.10.1
- export PATH="$HOME/.yarn/bin:$PATH"
# Run the npm package tests
- yarn install
- travis_util/test_npm.sh
# Checks for JavaDoc errors
- mvn -Dstyle.color=always -pl com.google.javascript:closure-compiler javadoc:javadoc
# Causes the build to run on a VM instead of in a container, to avoid OOM errors.
sudo: required
after_success:
- travis_util/deploy_snapshot.sh
env:
global:
# Force maven to use colorized output
- MAVEN_OPTS="-Djansi.force=true"
# CI_DEPLOY_USERNAME
- secure: "U2O3l6+TOz+3pxxsFdl/T+ktgGixfJO1Fc9pNC75v/N08lfNmyB+ee1wz0E8q7SZvnNR9D6KfLCFzjq0sS5F9FGrfKbFDTPxyaz/4EwTk0fdvPzaKhs8xl6LPVlLw6vLRIWc8PPCIVqqbYAbG6JA8liBPGbBXD/LXmCFbSr0rLg="
# CI_DEPLOY_PASSWORD
- secure: "Qq9mvv8z7X3iGlpp4zlGIAOOZodSw9fw0JylT7gKRXyMEarYLHoBXoNnb6seTxExRKuvSGo8UTvqLA4rg2+qWIulLYZJ0LZRcLOwfIomI5v7COQ5XX+NllDf1Oop+5Bpbo3ka0Xp9iQSA3xpw35bfTfCFJpIV1/d7WiOHofZoqc="
notifications:
email: false