You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
cpp-peglib/.travis.yml

38 lines
729 B

language: cpp
sudo: false
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- kubuntu-backports
- ubuntu-toolchain-r-test
packages:
- cmake
- gcc-4.9
- g++-4.9
env: COMPILER=g++-4.9
# - compiler: clang
# addons:
# apt:
# sources:
# - kubuntu-backports
# - ubuntu-toolchain-r-test
# - llvm-toolchain-precise-3.7
# packages:
# - cmake
# - clang-3.7
# env: COMPILER=clang++-3.7
branches:
only:
- master
before_script:
- export CXX=$COMPILER
script:
- mkdir build && cd build
- cmake .. && make && ctest -V