mirror of
https://github.com/facebook/rocksdb.git
synced 2024-11-26 16:30:56 +00:00
0bfe0573e8
Summary: Travis is failing due to missing gflags (https://travis-ci.org/facebook/rocksdb/jobs/80307921). Adding libgflags-dev should help. Test Plan: Run tests on Travis. Reviewers: rven, anthony, yhchiang, aekmekji, igor, sdong Reviewed By: sdong Subscribers: dhruba, leveldb Differential Revision: https://reviews.facebook.net/D46905
29 lines
877 B
YAML
29 lines
877 B
YAML
sudo: false
|
|
language: cpp
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
compiler: clang
|
|
env: COMPILER=clang++-3.6
|
|
addons:
|
|
apt:
|
|
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.6']
|
|
packages: ['clang-3.6', 'zlib1g-dev', 'libbz2-dev', 'libsnappy-dev', 'libgflags-dev']
|
|
- os: osx
|
|
compiler: clang
|
|
|
|
before_script:
|
|
- if [ -n "${COMPILER}" ]; then CXX=${COMPILER}; fi
|
|
- if [[ $(uname -s) == 'Darwin' ]]; then brew install gflags snappy; fi
|
|
|
|
# Lousy hack to disable use and testing of fallocate, which doesn't behave quite
|
|
# as EnvPosixTest::AllocateTest expects within the Travis OpenVZ environment.
|
|
script: OPT=-DTRAVIS V=1 make -j4 check && OPT=-DTRAVIS V=1 make clean jclean rocksdbjava jtest
|
|
|
|
notifications:
|
|
email:
|
|
- leveldb@fb.com
|
|
webhooks:
|
|
- https://buildtimetrend.herokuapp.com/travis
|