Skip to content

Commit

Permalink
feature: added support for Travis CI.
Browse files Browse the repository at this point in the history
Signed-off-by: Yichun Zhang (agentzh) <[email protected]>
  • Loading branch information
chipitsine authored and agentzh committed May 3, 2016
1 parent 7eca2ad commit 49e15f1
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
sudo: required
dist: trusty

os: linux

language: c

compiler:
- gcc
- clang

install:
- sudo apt-get update > build.log 2>&1 || (cat build.log && exit 1)
- sudo apt-get install -qq -y cpanminus libipc-run3-perl > build.log 2>&1 || (cat build.log && exit 1)
- sudo cpanm --notest Test::Base Test::LongString > build.log 2>&1 || (cat build.log && exit 1)

script:
- make > build.log 2>&1 || (cat build.log && exit 1)
- prove -lv t

0 comments on commit 49e15f1

Please sign in to comment.