Skip to content

Commit b3ddc25

Browse files
committed
build against V8 6.6 on travis, adapt repo path
1 parent 90b6b31 commit b3ddc25

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

.travis.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,11 @@ services:
55
- docker
66

77
env:
8-
- V8VER=6.5
8+
- V8VER=6.6
99
PHPVER=7.0
10-
- V8VER=6.4
11-
PHPVER=7.0
12-
- V8VER=6.5
13-
PHPVER=7.1
14-
- V8VER=6.4
10+
- V8VER=6.6
1511
PHPVER=7.1
16-
- V8VER=6.5
17-
PHPVER=7.2
18-
- V8VER=6.4
12+
- V8VER=6.6
1913
PHPVER=7.2
2014

2115
script: make -f Makefile.travis test

Dockerfile.travis

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update -q
99
RUN apt-get install -y software-properties-common
1010

1111
RUN add-apt-repository ppa:ondrej/php
12-
RUN add-apt-repository ppa:pinepain/libv8-$V8VER -y
12+
RUN add-apt-repository ppa:pinepain/php -y
1313
RUN apt-get update -q
1414

1515
RUN apt-get install -y php$PHPVER-dev libv8-$V8VER-dev

Makefile.travis

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Configure and build scripts for travis CI system
2-
V8VER ?= 6.3
2+
V8VER ?= 6.6
33

44
IMAGENAME ?= v8js-test
55

@@ -12,3 +12,5 @@ build:
1212

1313
test: build
1414
docker run --rm -t $(IMAGENAME) make test
15+
16+
.PHONY: build test

0 commit comments

Comments
 (0)