Fix travis
Summary: Fix travis for mac by using gflags package instead of doing `brew install` Test Plan: https://travis-ci.org/facebook/rocksdb/builds/156358515 Reviewers: sdong, andrewkr, lightmark, yiwu Reviewed By: yiwu Subscribers: andrewkr, dhruba Differential Revision: https://reviews.facebook.net/D62997
This commit is contained in:
parent
db74b1a219
commit
f099af4c76
@ -9,7 +9,7 @@ compiler:
|
|||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.6']
|
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.6']
|
||||||
packages: ['clang-3.6' , 'zlib1g-dev', 'libbz2-dev', 'libsnappy-dev', 'curl']
|
packages: ['clang-3.6' , 'zlib1g-dev', 'libbz2-dev', 'libsnappy-dev', 'curl', 'gflags']
|
||||||
env:
|
env:
|
||||||
# Run all tests before db_block_cache_test (db_test, db_test2)
|
# Run all tests before db_block_cache_test (db_test, db_test2)
|
||||||
- JOB_NAME=unittests ROCKSDBTESTS_END=db_block_cache_test
|
- JOB_NAME=unittests ROCKSDBTESTS_END=db_block_cache_test
|
||||||
@ -26,13 +26,7 @@ install:
|
|||||||
- 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
|
- 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
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
# 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"
|
|
||||||
- export LIBRARY_PATH="$LIBRARY_PATH:/tmp/gflags-2.1.2/lib"
|
|
||||||
- export CPLUS_INCLUDE_PATH="$CPLUS_INCLUDE_PATH:/tmp/gflags-2.1.2/include"
|
|
||||||
- if [[ "${TRAVIS_OS_NAME}" == 'linux' ]]; then CXX=clang++-3.6; fi
|
- if [[ "${TRAVIS_OS_NAME}" == 'linux' ]]; then CXX=clang++-3.6; fi
|
||||||
- if [[ "${TRAVIS_OS_NAME}" == 'osx' ]]; then brew install gflags snappy; fi
|
|
||||||
# Limit the maximum number of open file descriptors to 8192
|
# Limit the maximum number of open file descriptors to 8192
|
||||||
- ulimit -n 8192 || true
|
- ulimit -n 8192 || true
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user