0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-12-22 08:11:52 +00:00

Travis config update: compile against minimum supported v8 and most recent v8.

This commit is contained in:
C. Scott Ananian 2013-10-25 22:46:45 -04:00
parent 673d178ce7
commit 99a1d54e9e
2 changed files with 5 additions and 2 deletions

View File

@ -3,6 +3,9 @@ php:
- 5.5
- 5.4
- 5.3
env:
- V8VER=3.22.22
- V8VER=3.21.12
before_install: make -f Makefile.travis before_install
install: make -f Makefile.travis install
script: make -f Makefile.travis test

View File

@ -1,6 +1,6 @@
# Configure and build scripts for travis CI system
V8VER=3.22.10
CPPVER=4.6
V8VER ?= 3.22.10
CPPVER ?= 4.6
export CXX=g++-$(CPPVER)
export LINK=g++-$(CPPVER)