Skip to content

Commit

Permalink
initial travis-ci support
Browse files Browse the repository at this point in the history
  • Loading branch information
chipitsine committed Oct 29, 2016
1 parent 7c942b7 commit e973a19
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
sudo: required
dist: trusty

os: linux

language: c

compiler:
- gcc
- clang

addons:
apt:
packages:
- libpcap-dev

cache:
apt: true

script:
- autoreconf -iv > build.log 2>&1 || (cat build.log && exit 1)
- ./configure > build.log 2>&1 || (cat build.log && exit 1)
- make > build.log 2>&1 || (cat build.log && exit 1)
- sudo make test

0 comments on commit e973a19

Please sign in to comment.