Skip to content

Commit

Permalink
Merge 3ce0a26 into 13ff268
Browse files Browse the repository at this point in the history
  • Loading branch information
jbboehr committed Aug 19, 2015
2 parents 13ff268 + 3ce0a26 commit ab4b2a2
Show file tree
Hide file tree
Showing 18 changed files with 1,352 additions and 1,230 deletions.
37 changes: 27 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,37 @@
language: php

before_install:
- git submodule update --init --recursive
- git clone git://github.com/jbboehr/libmustache.git libmustache
- cd libmustache
- autoreconf -i && ./configure && make && sudo make install
- cd ..

php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0

script:
branches:
only:
- master
- php7

sudo: false

before_install:
- travis_retry git submodule update --init --recursive
- travis_retry git clone git://github.com/jbboehr/libmustache.git libmustache
- cd libmustache
- autoreconf -fiv
- ./configure --prefix=$HOME/libmustache
- make
- make install
- cd ..

install:
- phpize
- ./configure --enable-mustache
- ./configure --enable-mustache --with-libmustache=$HOME/libmustache
- make
- echo n | make test

script:
- export NO_INTERACTION=1
- export REPORT_EXIT_STATUS=1
- export TEST_PHP_EXECUTABLE=`which php`
- php run-tests.php -d extension=mustache.so -d extension_dir=modules -n ./tests/*.phpt
- for i in `ls tests/*.out 2>/dev/null`; do echo "-- START ${i}"; cat $i; echo "-- END"; done

0 comments on commit ab4b2a2

Please sign in to comment.