Simple Linux Panel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mdserver-web/plugins/php/versions/all_test.sh

69 lines
2.1 KiB

6 years ago
#! /bin/sh
2 years ago
export PATH=$PATH:/opt/local/bin:/opt/local/sbin:/opt/local/share/man:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin
export PATH=$PATH:/opt/homebrew/bin
6 years ago
DIR=$(cd "$(dirname "$0")"; pwd)
ROOT_DIR=$(cd "$(dirname "$0")"; pwd)
6 years ago
3 years ago
# cd /www/server/mdserver-web/scripts/quick && bash debug.sh
3 years ago
# cd /www/server/mdserver-web/plugins/php/versions && /bin/bash all_test.sh
6 years ago
11 months ago
# cd /www/server/mdserver-web/plugins/php && bash install.sh install 82
3 years ago
# cd /www/server/mdserver-web/plugins/php/versions/common && bash gd.sh install 73
3 years ago
# cd /www/server/mdserver-web/plugins/php/versions/common && bash swoole.sh install 54
3 years ago
# PHP_VER=52
# echo "php${PHP_VER} -- start"
# cmd_ext=$(ls -l $DIR/versions/$PHP_VER/ |awk '{print $9}')
# cd $DIR && /bin/bash install.sh install $PHP_VER
# for ii in $cmd_ext
# do
# if [ "install.sh" == "$ii" ];then
# echo '' > /tmp/t.log
# else
# cd $DIR/versions/$PHP_VER && /bin/bash $ii install $PHP_VER
# fi
# done
# echo "php${PHP_VER} -- end"
11 months ago
PHP_VER_LIST=(53 54 55 56 70 71 72 73 74 80 81 82 83)
# PHP_VER_LIST=(81)
for PHP_VER in ${PHP_VER_LIST[@]}; do
echo "php${PHP_VER} -- start"
if [ ! -d /www/server/php/${PHP_VER} ];then
cd /www/server/mdserver-web/plugins/php && bash install.sh install ${PHP_VER}
6 years ago
fi
echo "php${PHP_VER} -- end"
6 years ago
done
6 years ago
cd $DIR
PHP_VER_LIST=(53 54 55 56 70 71 72 73 74 80 81 82 83)
# yar
PHP_EXT_LIST=(ZendGuardLoader pdo mysqlnd sqlite3 openssl opcache mcrypt fileinfo \
exif gd intl pcntl memcache memcached redis imagemagick xdebug \
swoole yac apc mongo mongodb solr seaslog mbstring iconv event)
3 years ago
for PHP_VER in ${PHP_VER_LIST[@]}; do
echo "php${PHP_VER} -- start"
3 years ago
if [ ! -d /www/server/php/${PHP_VER} ];then
echo "php${PHP_VER} is not install!"
continue
fi
NON_ZTS_FILENAME=`ls /www/server/php/${PHP_VER}/lib/php/extensions | grep no-debug-non-zts`
for EXT in ${PHP_EXT_LIST[@]}; do
extFile=/www/server/php/${PHP_VER}/lib/php/extensions/${NON_ZTS_FILENAME}/${EXT}.so
echo "${PHP_VER} ${EXT} start"
if [ ! -f $extFile ];then
bash common.sh $PHP_VER install ${EXT}
fi
echo "${PHP_VER} ${EXT} end"
done
3 years ago
echo "php${PHP_VER} -- end"
done
6 years ago