0
0
mirror of https://github.com/phpv8/v8js.git synced 2025-01-03 10:21:51 +00:00

Travis config update: fix for issue #56.

Test against php 5.3, 5.4, and 5.5 -- which incidentally works around
the 'make test always succeeds' bug in php 5.3 and 5.4
(https://bugs.php.net/bug.php?id=60285).

('make test' may always succeed, but we still test against 5.3 and 5.4 to
ensure that we build correctly w/o errors on these php versions.)
This commit is contained in:
C. Scott Ananian 2013-10-25 22:28:53 -04:00
parent 24257b54af
commit 673d178ce7

View File

@ -1,5 +1,8 @@
language: cpp language: php
compiler: gcc php:
- 5.5
- 5.4
- 5.3
before_install: make -f Makefile.travis before_install before_install: make -f Makefile.travis before_install
install: make -f Makefile.travis install install: make -f Makefile.travis install
script: make -f Makefile.travis test script: make -f Makefile.travis test