2015-09-10 02:55:33 +02:00
sudo : false
2014-05-11 06:18:23 +02:00
language : cpp
2015-09-10 02:55:33 +02:00
2015-09-10 03:53:55 +02:00
matrix :
include :
- os : linux
compiler : clang
env : COMPILER=clang++-3.6
addons :
apt :
sources : [ 'ubuntu-toolchain-r-test' , 'llvm-toolchain-precise-3.6' ]
2015-09-16 20:10:24 +02:00
packages : [ 'clang-3.6' , 'zlib1g-dev' , 'libbz2-dev' , 'libsnappy-dev' , 'curl' ]
2015-09-10 03:53:55 +02:00
- os : osx
compiler : clang
2015-09-16 20:10:24 +02:00
install :
# Build gflags
# TODO(noetzli): Remove when gflags available through Travis
2015-09-16 22:12:52 +02:00
- pushd /tmp/ && curl -L https://github.com/gflags/gflags/archive/v2.1.2.tar.gz -o gflags.tar.gz && tar xfz gflags.tar.gz && cd gflags-2.1.2 && cmake . && make && popd
2015-09-18 07:02:05 +02:00
# Download clang-format-diff.py to check source code formatting
- pushd /tmp/ && curl -L http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format/clang-format-diff.py -o clang-format-diff.py && chmod +x clang-format-diff.py && popd
2015-09-16 20:10:24 +02:00
2015-09-10 03:53:55 +02:00
before_script :
2015-09-16 20:10:24 +02:00
# Add gflags to include/library paths
# TODO(noetzli): Remove when gflags available through Travis
- export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/tmp/gflags-2.1.2/lib"
2015-09-16 22:12:52 +02:00
- export LIBRARY_PATH="$LIBRARY_PATH:/tmp/gflags-2.1.2/lib"
2015-09-16 20:10:24 +02:00
- export CPLUS_INCLUDE_PATH="$CPLUS_INCLUDE_PATH:/tmp/gflags-2.1.2/include"
- if [ -n "${COMPILER}" ]; then CXX=${COMPILER}; fi
- if [[ $(uname -s) == 'Darwin' ]]; then brew install gflags snappy; fi
- ulimit -n 2000 || true
2015-09-10 02:55:33 +02:00
2014-05-11 06:18:23 +02:00
# Lousy hack to disable use and testing of fallocate, which doesn't behave quite
# as EnvPosixTest::AllocateTest expects within the Travis OpenVZ environment.
2015-09-18 07:02:05 +02:00
script : OPT=-DTRAVIS CLANG_FORMAT_DIFF=/tmp/clang-format-diff.py make format && OPT=-DTRAVIS V=1 make -j4 check && OPT=-DTRAVIS V=1 make clean jclean rocksdbjava jtest
2015-09-10 03:53:55 +02:00
2014-05-15 01:08:02 +02:00
notifications :
2015-09-10 05:30:00 +02:00
email :
- leveldb@fb.com
2015-09-10 02:55:33 +02:00
webhooks :
- https://buildtimetrend.herokuapp.com/travis