forked from facebook/buck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
62 lines (56 loc) · 1.73 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
language: java
jdk:
- oraclejdk8
env:
- CI_ACTION=build
- CI_ACTION=unit
- CI_ACTION=integration
- CI_ACTION=ant
# Enable container-based architecture.
sudo: false
addons:
apt:
sources:
# For newer gcc than precise supports out of the box.
- ubuntu-toolchain-r-test
packages:
# Travis is on 64bit and there will be a cryptic aapt error w/o these libs.
# For native code tests, we need some additional libraries if we are in a 64-bit environment.
- libgd2-xpm
- libc6:i386
- libstdc++6:i386
- zlib1g:i386
- groovy
# We rely on -gno-record-gcc-switches which was added in 4.7.
- gcc-4.7
- g++-4.7
# Getting compile errors on javac 1.8.0_31-b13
- oracle-java8-installer
before_install:
- mkdir travis-cxx
- ln -s /usr/bin/gcc-4.7 travis-cxx/gcc
- ln -s /usr/bin/g++-4.7 travis-cxx/g++
- export PATH=$(pwd)/travis-cxx:$PATH
# Limit Ant's and Buck's memory usage to avoid the OOM killer.
- export ANT_OPTS='-Xmx500m'
- export BUCK_EXTRA_JAVA_ARGS='-Xmx500m'
# Set up the Android environment.
- export NDK_HOME=${HOME}/android-ndk-linux
- ./scripts/travisci_install_android_ndk.sh
- export ANDROID_HOME=${HOME}/android-sdk-linux
- ./scripts/travisci_install_android_sdk.sh
# Install go 1.5
- eval "$(gimme 1.5)"
- echo -e "[go]\n root = ${GOROOT}" >> .buckconfig
# Set up the Groovy environment
- export GROOVY_HOME=/usr/share/groovy/
# https://docs.travis-ci.com/user/caching#Things-not-to-cache
# https://docs.travis-ci.com/user/caching#Explicitly-disabling-caching
cache:
directories:
- $HOME/ndk_cache
- $HOME/sdk_cache
notifications:
slack: buckbuild:TnJN80RxFaSAuCGswsnWLdoj
script:
- ./scripts/travisci_run.sh