valijson/.travis.yml

24 lines
372 B
YAML
Raw Normal View History

language: cpp
compiler:
- clang
- gcc
before_install:
2014-04-17 23:31:18 +02:00
- sudo apt-get install python-software-properties
- sudo add-apt-repository ppa:boost-latest/ppa
- sudo apt-get update -qq
install:
2014-04-17 23:31:18 +02:00
- sudo apt-get install libboost1.55-dev libboost-regex1.55-dev
before_script:
- mkdir -p build
script:
- pushd build
- cmake ..
- make
- ./test_suite
- popd