aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
blob: eeb3dc2c859795fe02c1683c104de4a8266b38a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: cpp
before_install:
  - sudo add-apt-repository ppa:yjwong/gflags -y
  - sudo add-apt-repository ppa:h-rayflood/llvm -y
  - sudo apt-get update -qq
  - sudo apt-get install -qq libgtest-dev libgflags-dev python-virtualenv clang-3.5
env:
  global:
    - RUBY_VERSION=2.1
  matrix:
    - CONFIG=opt TEST=python
script:
  - rvm use $RUBY_VERSION
  - gem install bundler
  - ./tools/run_tests/run_tests.py -l $TEST -t -j 16 -c $CONFIG -s 4.0
notifications:
  email: false