This repository was archived by the owner on Mar 29, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ services:
6
6
7
7
env :
8
8
global :
9
- - V8=6.3
9
+ - V8=6.4
10
10
matrix :
11
- - TAG=xenial-v8-63 -php-71
12
- - TAG=xenial-v8-63 -php-71 TEST_PHP_ARGS=-m
13
- - TAG=xenial-v8-63 -php-72
14
- - TAG=xenial-v8-63 -php-72 TEST_PHP_ARGS=-m
11
+ - TAG=xenial-v8-64 -php-71
12
+ - TAG=xenial-v8-64 -php-71 TEST_PHP_ARGS=-m
13
+ - TAG=xenial-v8-64 -php-72
14
+ - TAG=xenial-v8-64 -php-72 TEST_PHP_ARGS=-m
15
15
16
16
before_install :
17
17
# docker on travis doesn't allow anything before FROM, let's fix that
Original file line number Diff line number Diff line change 1
- ARG TAG=xenial-v8-63 -php-72
1
+ ARG TAG=xenial-v8-64 -php-72
2
2
3
3
FROM pinepain/php-v8-docker:${TAG}
4
4
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ on top of php-v8 extension and makes embedding JavaScript in PHP easier.
97
97
### Requirements
98
98
99
99
#### V8
100
- You will need a recent v8 Google JavaScript engine version installed. At this time v8 >= 6.3.163 required.
100
+ You will need a recent v8 Google JavaScript engine version installed. At this time v8 >= 6.4.6 required.
101
101
102
102
#### PHP
103
103
This extension is PHP7-only. It works and tested with both PHP 7.0 and PHP 7.1.
@@ -120,7 +120,7 @@ $ php --ri v8
120
120
121
121
While [ pinepain/php] ( https://launchpad.net/~pinepain/+archive/ubuntu/php ) PPA targets to contain all necessary
122
122
extensions with dependencies, you may find
123
- [ pinepain/libv8-6.3 ] ( https://launchpad.net/~pinepain/+archive/ubuntu/libv8-6.3 ) ,
123
+ [ pinepain/libv8-6.4 ] ( https://launchpad.net/~pinepain/+archive/ubuntu/libv8-6.4 ) ,
124
124
[ pinepain/libv8-experimental] ( https://launchpad.net/~pinepain/+archive/ubuntu/libv8-experimental ) and
125
125
[ pinepain/php-v8] ( https://launchpad.net/~pinepain/+archive/ubuntu/php-v8 ) standalone PPAs useful.
126
126
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ if test "$PHP_V8" != "no"; then
19
19
SEARCH_PATH="/usr/local /usr"
20
20
SEARCH_FOR="include/v8.h"
21
21
22
- V8_MIN_API_VERSION_STR=6.3.248
22
+ V8_MIN_API_VERSION_STR=6.4.6
23
23
24
24
DESIRED_V8_VERSION=`echo "${V8_MIN_API_VERSION_STR}" | $AWK 'BEGIN { FS = "."; } { printf "%s.%s", [ $] 1, [ $] 2;}'`
25
25
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ echo Provisioning...
5
5
# Add Ondřej Surý's PPA with co-installable PHP versions:
6
6
sudo add-apt-repository -y ppa:ondrej/php
7
7
# Add libv8 PPA:
8
- sudo add-apt-repository ppa:pinepain/libv8-6.3
8
+ sudo add-apt-repository ppa:pinepain/libv8-6.4
9
9
10
10
# Let's update packages list:
11
11
sudo apt-get update
@@ -19,7 +19,7 @@ sudo apt-get install -y git htop curl pkgconf
19
19
20
20
21
21
# Build and development requirements
22
- sudo apt-get install -y libv8-6.3 libv8-6.3 -dev libv8-6.3 -dbg
22
+ sudo apt-get install -y libv8-6.4 libv8-6.4 -dev libv8-6.4 -dbg
23
23
sudo apt-get install -y dh-make valgrind
24
24
sudo apt-get install -y libssl-dev openssl
25
25
sudo apt-get install -y php7.1 php7.1-cli php7.1-dev php7.1-fpm
You can’t perform that action at this time.
0 commit comments