1234567891011121314151617181920 |
- # Configure and build scripts for travis CI system
- V8VER ?= 5.1
- export NO_INTERACTION=1
- export REPORT_EXIT_STATUS=1
- before_install:
- sudo add-apt-repository ppa:pinepain/libv8-$(V8VER) -y
- sudo apt-get update -q
- install:
- sudo apt-get install php7.0-cli php7.0-dev libv8-$(V8VER)-dev
- build:
- phpize
- ./configure
- $(MAKE) -j3
- test: build
- $(MAKE) test
|