File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -316,10 +316,6 @@ install:
316
316
cp default_configure_options.$RELEASE $HOME/.php-build/share/php-build/default_configure_options
317
317
fi
318
318
- cat custom_configure_options >> $HOME/.php-build/share/php-build/default_configure_options
319
- - | # disable xdebug on master
320
- if [[ $VERSION = master && $RELEASE != xenial ]]; then
321
- sed -i -e '/install_xdebug_master/d' $HOME/.php-build/share/php-build/definitions/$VERSION
322
- fi
323
319
- |
324
320
if [[ $(lsb_release -cs) = "trusty" || $(lsb_release -cs) = "xenial" || $(lsb_release -cs) = "bionic" ]]; then
325
321
if [[ $HOSTTYPE == "powerpc64le" ]]; then
Original file line number Diff line number Diff line change @@ -60,6 +60,10 @@ set -o xtrace
60
60
61
61
export PATH=" $HOME /.phpenv/bin:$HOME /.php-build/bin:$PATH "
62
62
63
+ if [[ $VERSION == nightly* || $VERSION == master* ]]; then
64
+ VERSION=8.0snapshot
65
+ fi
66
+
63
67
php-build -i development " ${VERSION} " " ${INSTALL_DEST} /${VERSION} "
64
68
65
69
pushd " ${INSTALL_DEST} /${VERSION} "
@@ -83,7 +87,7 @@ ln -sv ../sbin/php-fpm bin/php-fpm
83
87
84
88
# composer and phpunit
85
89
curl -fsSL -o bin/composer http://getcomposer.org/composer.phar
86
- if [[ $VERSION == nightly* || $VERSION == master* || $VERSION == 7* ]]; then
90
+ if [[ $VERSION == nightly* || $VERSION == master* || $VERSION == 7* || $VERSION == 8.0snapshot ]]; then
87
91
PHPUNIT_ARCHIVE=phpunit.phar
88
92
elif [[ $VERSION == 5.6* ]]; then
89
93
PHPUNIT_ARCHIVE=phpunit-5.7.phar
You can’t perform that action at this time.
0 commit comments