1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-23 02:35:57 +01:00

Add .travis.yml.

This commit is contained in:
Matias Fontanini
2015-05-23 10:53:20 -07:00
parent 68c750810f
commit 8400079bce

24
.travis.yml Normal file
View File

@@ -0,0 +1,24 @@
language: cpp
compiler:
- gcc
- clang
os:
- linux
- osx
before_install:
- ifconfig -a
install:
- if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get update && sudo apt-get install libpcap-dev libssl-dev; fi
before_script:
- mkdir build
- cd build
- cmake .. -DLIBTINS_ENABLE_CXX11=1
- make tests
script:
- ctest -V