forked from openresty/sregex
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: added support for Travis CI.
Signed-off-by: Yichun Zhang (agentzh) <[email protected]>
- Loading branch information
1 parent
7eca2ad
commit 49e15f1
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |