Skip to content

Commit

Permalink
adding travis-ci
Browse files Browse the repository at this point in the history
currently without make check, which did not run proper on travis (further investigation needed)
  • Loading branch information
Tobias Jungel committed Oct 21, 2014
1 parent c9e65fb commit 6c0616b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ src/rofl_pipeline.h
/build/*

!.gitignore
!.travis.yml
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: cpp
compiler:
- gcc
- clang
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libssl-dev libcunit1-dev libcppunit-dev
install: true
script:
- ./autogen.sh
- mkdir -p build
- cd build
- ../configure --disable-silent-rules
- make -j 2
# - make -j 2 check

0 comments on commit 6c0616b

Please sign in to comment.