Skip to content

Commit

Permalink
Merge pull request #27 from scpeters/travis
Browse files Browse the repository at this point in the history
Add .travis.yml
  • Loading branch information
scpeters committed Dec 14, 2015
2 parents b1641ad + 123537a commit 4800600
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
sudo: required
dist: trusty
language: cpp
compiler:
- gcc
- clang
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=RelWithDebInfo
install:
- sudo apt-get update -qq
- sudo apt-get install -qq -y libboost-system-dev libboost-thread-dev
script:
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_CXX_FLAGS=-Werror ..
- make
after_script:
- sudo make install
- pkg-config --modversion console_bridge

0 comments on commit 4800600

Please sign in to comment.