Skip to content

Commit 568842a

Browse files
committed
Adding PHP 8.3
1 parent cb16e02 commit 568842a

12 files changed

+13
-14
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ jobs:
1010
name: jammy
1111
php: "8.1"
1212
before_install:
13-
# test
14-
- ls -a /home/travis/.phpenv/versions/hhvm
15-
- ls -a /home/travis/.phpenv/versions/hhvm-stable
1613
- sudo rm -rf /var/lib/apt/lists/lock /var/cache/apt/archives/lock /var/lib/dpkg/lock
1714
- sudo apt-get update
1815
- sudo apt-get -y install libcurl4-openssl-dev php-dev libicu-dev php-pear
@@ -30,6 +27,8 @@ jobs:
3027
eval "$(phpenv init -)"
3128
fi
3229
fi
30+
# test
31+
- ls -a /home/travis/.phpenv/versions
3332
- dist: focal
3433
language: minimal
3534
group: stable

bin/compile-extension-amqp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ git clone https://github.com/pdezwart/php-amqp.git
1919
pushd php-amqp
2020

2121
phpize
22-
./configure && make && make install
22+
./configure && make && sudo make install
2323
popd
2424

2525
travis_time_finish

bin/compile-extension-apcu

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

88
if [[ ! $VERSION =~ ^7 && ! $VERSION =~ ^8 && ! $VERSION =~ ^master$ ]]; then
9-
apcu=apcu-4.0.11
9+
apcu=apcu-5.1.23
1010
else
1111
apcu=apcu
1212
fi

bin/compile-extension-memcache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if [[ ! $VERSION =~ ^7 && ! $VERSION =~ ^8 && ! $VERSION =~ ^master$ ]]; then
1010
tar zxvf memcache*.tgz && pushd memcache*/
1111
make clean || true
1212
phpize
13-
./configure && make && make install
13+
./configure && make && sudo make install
1414
popd
1515
fi
1616

bin/compile-extension-memcached

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ else
2727
make clean || true
2828
fi
2929
phpize
30-
./configure --with-libmemcached-dir=$INSTALL_DEST/$VERSION && make && make install
30+
./configure --with-libmemcached-dir=$INSTALL_DEST/$VERSION && make && sudo make install
3131
popd
3232

3333
travis_time_finish

bin/compile-extension-mongo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if [[ ! $VERSION =~ ^7 && ! $VERSION =~ ^8 && ! $VERSION =~ ^master$ ]]; then
1010
pushd mongo-php-driver-legacy
1111
git checkout 1.6.16
1212
phpize
13-
./configure && make && make install
13+
./configure && make && sudo make install
1414
popd
1515
fi
1616

bin/compile-extension-mongodb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if [[ $VERSION =~ ^master$ || $VERSION =~ snapshot$ ]]; then
1212
phpize
1313
./configure
1414
make all
15-
make install
15+
sudo make install
1616
popd
1717
else
1818
yes '' | pecl_install mongodb

bin/compile-extension-redis

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if [[ $VERSION =~ ^8 || $VERSION =~ ^master$ || $VERSION =~ snapshot$ ]]; then
1010
pushd phpredis
1111
# git checkout php7
1212
phpize
13-
./configure && make && make install || exit 1
13+
./configure && make && sudo make install || exit 1
1414
popd
1515
elif [[ $VERSION =~ ^7 ]]; then
1616
pecl_install redis

bin/compile-extension-zmq

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ else
2020
fi
2121
git checkout 1.1.2
2222
phpize
23-
./configure && make && make install
23+
./configure && make && sudo make install
2424
fi
2525

2626
popd

bin/install-icu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pushd icu/source
1717
make
1818
# remove $ICU_RELEASE so that we have a prestine installation of icu there
1919
rm -rf $ICU_INSTALL_DIR
20-
make install
20+
sudo make install
2121
popd
2222

2323
# PHP >= 7.4 exclusively uses pkg-config for ICU

0 commit comments

Comments
 (0)