Skip to content

Commit

Permalink
Added .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kjdev committed Sep 25, 2015
1 parent df10a63 commit 9f9d9d0
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 @@
language: php

php:
- 5.4
- 5.5
- 5.6
- nightly

env:
- REPORT_EXIT_STATUS=1 NO_INTERACTION=1

before_script:
- phpize && ./configure && make

script:
- make test | tee test-output.txt && grep 'TEST SUMMARY$' test-output.txt > /dev/null ; test $? '!=' 0

after_failure:
- for FILE in `find ./tests -name '*.diff'`; do echo echo $FILE; cat $FILE; echo; done

0 comments on commit 9f9d9d0

Please sign in to comment.