0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-19 15:25:19 +00:00

build against V8 6.6 on travis, adapt repo path

This commit is contained in:
Stefan Siegl 2018-07-13 15:51:39 +02:00
parent 90b6b31f06
commit b3ddc25db1
No known key found for this signature in database
GPG Key ID: 73942AF5642F3DDA
3 changed files with 7 additions and 11 deletions

View File

@ -5,17 +5,11 @@ services:
- docker - docker
env: env:
- V8VER=6.5 - V8VER=6.6
PHPVER=7.0 PHPVER=7.0
- V8VER=6.4 - V8VER=6.6
PHPVER=7.0
- V8VER=6.5
PHPVER=7.1 PHPVER=7.1
- V8VER=6.4 - V8VER=6.6
PHPVER=7.1
- V8VER=6.5
PHPVER=7.2
- V8VER=6.4
PHPVER=7.2 PHPVER=7.2
script: make -f Makefile.travis test script: make -f Makefile.travis test

View File

@ -9,7 +9,7 @@ RUN apt-get update -q
RUN apt-get install -y software-properties-common RUN apt-get install -y software-properties-common
RUN add-apt-repository ppa:ondrej/php RUN add-apt-repository ppa:ondrej/php
RUN add-apt-repository ppa:pinepain/libv8-$V8VER -y RUN add-apt-repository ppa:pinepain/php -y
RUN apt-get update -q RUN apt-get update -q
RUN apt-get install -y php$PHPVER-dev libv8-$V8VER-dev RUN apt-get install -y php$PHPVER-dev libv8-$V8VER-dev

View File

@ -1,5 +1,5 @@
# Configure and build scripts for travis CI system # Configure and build scripts for travis CI system
V8VER ?= 6.3 V8VER ?= 6.6
IMAGENAME ?= v8js-test IMAGENAME ?= v8js-test
@ -12,3 +12,5 @@ build:
test: build test: build
docker run --rm -t $(IMAGENAME) make test docker run --rm -t $(IMAGENAME) make test
.PHONY: build test