Revision 978b5c17c0c98ec678e91ac9633bc292647db22e authored by Igor Canadi on 03 June 2015, 17:21:52 UTC, committed by Igor Canadi on 03 June 2015, 17:21:52 UTC
1 parent 4b9585f
Raw File
.travis.yml
language: cpp
compiler: gcc
before_install:
# As of this writing (10 May 2014) the Travis build environment is Ubuntu 12.04,
# which needs the following ugly dependency incantations to build RocksDB:
 - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
 - sudo apt-get update -qq
 - sudo apt-get install -y -qq gcc-4.9 g++-4.9 zlib1g-dev libbz2-dev libsnappy-dev
 - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 50
 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 50
 - wget https://gflags.googlecode.com/files/libgflags0_2.0-1_amd64.deb
 - sudo dpkg -i libgflags0_2.0-1_amd64.deb
 - wget https://gflags.googlecode.com/files/libgflags-dev_2.0-1_amd64.deb
 - sudo dpkg -i libgflags-dev_2.0-1_amd64.deb
# 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 unity && make clean && OPT=-DTRAVIS V=1 make db_test && ./db_test
notifications:
    email: false
back to top