Skip to content

Commit ac9d393

Browse files
committed
Check versions 8.0 in other extensions
1 parent 4b69120 commit ac9d393

6 files changed

+6
-6
lines changed

bin/compile-extension-apcu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ source $(dirname $0)/compile-extensions-common
55

66
travis_time_start
77

8-
if [[ ! $VERSION =~ ^7 && ! $VERSION =~ ^master$ ]]; then
8+
if [[ ! $VERSION =~ ^7 && ! $VERSION =~ ^8 && ! $VERSION =~ ^master$ ]]; then
99
apcu=apcu-4.0.11
1010
else
1111
apcu=apcu

bin/compile-extension-memcache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ source $(dirname $0)/compile-extensions-common
55

66
travis_time_start
77

8-
if [[ ! $VERSION =~ ^7 && ! $VERSION =~ ^master$ ]]; then
8+
if [[ ! $VERSION =~ ^7 && ! $VERSION =~ ^8 && ! $VERSION =~ ^master$ ]]; then
99
pecl download memcache-beta
1010
tar zxvf memcache*.tgz && pushd memcache*/
1111
make clean || true

bin/compile-extension-memcached

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ travis_time_start
1717

1818
install_memcache
1919

20-
if [[ $VERSION =~ ^7 || $VERSION =~ ^master$ ]]; then
20+
if [[ $VERSION =~ ^7 || $VERSION =~ ^8 || $VERSION =~ ^master$ ]]; then
2121
pecl download memcached-3.1.2
2222
tar zxvf memcached*.tgz && pushd memcached*/
2323
make clean || true

bin/compile-extension-redis

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ source $(dirname $0)/compile-extensions-common
55

66
travis_time_start
77

8-
if [[ $VERSION =~ ^master$ || $VERSION =~ snapshot$ ]]; then
8+
if [[ $VERSION =~ ^8 || $VERSION =~ ^master$ || $VERSION =~ snapshot$ ]]; then
99
git clone https://github.com/phpredis/phpredis.git
1010
pushd phpredis
1111
# git checkout php7

bin/compile-extension-ssh2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ sudo apt-get install libssh2-1-dev
99

1010
if [[ $VERSION =~ ^7\.[012] ]]; then
1111
pecl_install ssh2-1.1.2 </dev/null
12-
elif [[ $VERSION =~ ^master$ || $VERSION =~ ^7 ]]; then
12+
elif [[ $VERSION =~ ^master$ || $VERSION =~ ^7 || $VERSION =~ ^8 ]]; then
1313
echo "ssh2 is not compatible with $VERSION"
1414
# it's not yet compatible with master
1515
else

bin/compile-extension-zmq

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pushd php-zmq
1010

1111
sudo apt-get install libzmq3-dev
1212

13-
if [[ $VERSION =~ ^7 || $VERSION =~ ^master$ ]]; then
13+
if [[ $VERSION =~ ^7 || $VERSION =~ ^8 || $VERSION =~ ^master$ ]]; then
1414
git checkout php7
1515
phpize
1616
./configure && make && make install

0 commit comments

Comments
 (0)