forked from census-instrumentation/opencensus-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
73 lines (56 loc) · 1.48 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
sudo: false
language: java
matrix:
fast_finish: true
include:
- jdk: openjdk8
env: TASK=BUILD
os: linux
- jdk: oraclejdk9
env: TASK=BUILD
os: linux
- jdk: openjdk10
env: TASK=BUILD
os: linux
# TODO(songy23): fix JDK 11 build
# - jdk: openjdk11
# env: TASK=BUILD
# os: linux
- jdk: openjdk8
env: TASK=CHECKER_FRAMEWORK
os: linux
- env: TASK=CHECK_GIT_HISTORY
os: linux
# Build example projects last, since they are affected by fewer pull requests.
- jdk: openjdk8
env: TASK=BUILD_EXAMPLES_GRADLE
os: linux
- jdk: openjdk8
env: TASK=BUILD_EXAMPLES_MAVEN
os: linux
# Work around https://github.com/travis-ci/travis-ci/issues/2317
- env: TASK=BUILD
# Set the java version to 1.8 until we fix the build for java10.
osx_image: xcode9.3
os: osx
allow_failures:
# Allowing failures because osx builds are very slow.
- env: TASK=BUILD
os: osx
before_install:
- git log --oneline --decorate --graph -30
# Skip Travis' default Gradle install step. See http://stackoverflow.com/a/26575080.
install: true
script:
- buildscripts/travis_script
after_success:
- if \[ "$TASK" == "BUILD" \] && \[ "$TRAVIS_JDK_VERSION" == "openjdk8" \] && \[ "$TRAVIS_OS_NAME" = linux \]; then
bash <(curl -s https://codecov.io/bash) ;
fi
before_cache:
- rm -fr $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/