setup-php/src/scripts/linux.sh

240 lines
7.1 KiB
Bash
Raw Normal View History

2020-11-08 14:36:21 +07:00
# Function to setup environment for self-hosted runners.
self_hosted_helper() {
if ! command -v sudo >/dev/null; then
2021-08-10 03:07:46 +07:00
apt-get update
apt-get install -y sudo || add_log "${cross:?}" "sudo" "Could not install sudo"
fi
2020-11-08 14:36:21 +07:00
if ! command -v apt-fast >/dev/null; then
sudo ln -sf /usr/bin/apt-get /usr/bin/apt-fast
trap "sudo rm -f /usr/bin/apt-fast 2>/dev/null" exit
2019-10-17 03:11:13 +07:00
fi
2021-08-10 03:07:46 +07:00
install_packages apt-transport-https ca-certificates curl file make jq unzip autoconf automake gcc g++ gnupg
2020-07-25 13:57:51 +07:00
}
2020-11-08 14:36:21 +07:00
# Function to install a package
install_packages() {
packages=("$@")
2021-08-10 03:07:46 +07:00
$apt_install "${packages[@]}" >/dev/null 2>&1 || (update_lists && $apt_install "${packages[@]}" >/dev/null 2>&1)
}
2021-01-05 18:22:41 +07:00
# Function to disable an extension.
disable_extension_helper() {
local extension=$1
local disable_dependents=${2:-false}
if [ "$disable_dependents" = "true" ]; then
disable_extension_dependents "$extension"
fi
sudo sed -Ei "/=(.*\/)?\"?$extension(.so)?$/d" "${ini_file[@]}" "$pecl_file"
sudo find "$ini_dir"/.. -name "*$extension.ini" -not -path "*mods-available*" -delete >/dev/null 2>&1 || true
2021-01-05 18:22:41 +07:00
}
2020-10-08 18:57:52 +07:00
# Function to add PDO extension.
2020-03-05 07:28:24 +07:00
add_pdo_extension() {
pdo_ext="pdo_$1"
if check_extension "$pdo_ext"; then
2020-11-08 14:36:21 +07:00
add_log "${tick:?}" "$pdo_ext" "Enabled"
2020-03-05 07:28:24 +07:00
else
ext=$1
ext_name=$1
if shared_extension pdo; then
disable_extension_helper pdo
echo "extension=pdo.so" | sudo tee "${ini_file[@]/php.ini/conf.d/10-pdo.ini}" >/dev/null 2>&1
fi
2020-03-05 07:28:24 +07:00
if [ "$ext" = "mysql" ]; then
enable_extension "mysqlnd" "extension"
2021-02-19 15:00:02 +07:00
ext_name='mysqli'
elif [ "$ext" = "dblib" ]; then
ext_name="sybase"
elif [ "$ext" = "firebird" ]; then
install_packages libfbclient2 >/dev/null 2>&1
enable_extension "pdo_firebird" "extension"
ext_name="interbase"
2020-05-17 12:49:52 +07:00
elif [ "$ext" = "sqlite" ]; then
ext="sqlite3"
ext_name="sqlite3"
2020-03-05 07:28:24 +07:00
fi
2020-11-08 14:36:21 +07:00
add_extension "$ext_name" "extension" >/dev/null 2>&1
add_extension "$pdo_ext" "extension" >/dev/null 2>&1
2020-07-26 17:18:19 +07:00
add_extension_log "$pdo_ext" "Enabled"
2020-03-05 07:28:24 +07:00
fi
}
2021-10-15 19:23:09 +07:00
# Function to check if a package exists
check_package() {
sudo apt-cache policy "$1" 2>/dev/null | grep -q 'Candidate'
}
2020-05-27 17:53:52 +07:00
# Function to add extensions.
2020-02-23 20:30:40 +07:00
add_extension() {
2021-09-19 17:03:45 +07:00
local extension=$1
2020-11-08 14:36:21 +07:00
prefix=$2
2021-10-15 19:23:09 +07:00
package=php"$version"-"$extension"
2020-03-05 07:28:24 +07:00
enable_extension "$extension" "$prefix"
if check_extension "$extension"; then
2020-11-08 14:36:21 +07:00
add_log "${tick:?}" "$extension" "Enabled"
2020-03-05 07:28:24 +07:00
else
2021-10-15 19:23:09 +07:00
add_ppa ondrej/php >/dev/null 2>&1 || update_ppa ondrej/php
(check_package "$package" && install_packages "$package") || pecl_install "$extension"
2020-07-26 17:18:19 +07:00
add_extension_log "$extension" "Installed and enabled"
2020-02-23 20:30:40 +07:00
fi
sudo chmod 777 "${ini_file[@]}"
2020-02-23 20:30:40 +07:00
}
2020-05-27 17:53:52 +07:00
# Function to setup phpize and php-config.
2020-01-17 14:28:28 +07:00
add_devtools() {
2020-09-28 12:28:02 +07:00
tool=$1
2020-11-08 14:36:21 +07:00
if ! command -v "$tool$version" >/dev/null; then
install_packages "php$version-dev" "php$version-xml"
2020-01-17 14:28:28 +07:00
fi
switch_version "phpize" "php-config"
2020-11-08 14:36:21 +07:00
add_log "${tick:?}" "$tool" "Added $tool $semver"
2020-01-17 14:28:28 +07:00
}
2020-10-12 20:03:13 +07:00
# Function to setup the nightly build from shivammathur/php-builder
setup_nightly() {
2021-08-10 03:07:46 +07:00
run_script "php-builder" "${runner:?}" "$version"
2019-12-19 12:59:27 +07:00
}
2020-05-27 17:53:52 +07:00
# Function to setup PHP 5.3, PHP 5.4 and PHP 5.5.
setup_old_versions() {
2020-11-11 03:53:45 +07:00
run_script "php5-ubuntu" "$version"
}
2020-05-27 17:53:52 +07:00
# Function to add PECL.
2019-12-27 08:26:49 +07:00
add_pecl() {
2020-09-28 12:28:02 +07:00
add_devtools phpize >/dev/null 2>&1
2020-11-08 14:36:21 +07:00
if ! command -v pecl >/dev/null; then
install_packages php-pear
2020-01-30 13:33:30 +07:00
fi
2020-05-27 17:53:52 +07:00
configure_pecl >/dev/null 2>&1
pear_version=$(get_tool_version "pecl" "version")
add_log "${tick:?}" "PECL" "Added PECL $pear_version"
}
2020-05-27 17:53:52 +07:00
# Function to switch versions of PHP binaries.
switch_version() {
tools=("$@") && ! (( ${#tools[@]} )) && tools+=(pear pecl php phar phar.phar php-cgi php-config phpize phpdbg)
to_wait=()
for tool in "${tools[@]}"; do
if [ -e "/usr/bin/$tool$version" ]; then
sudo update-alternatives --set "$tool" /usr/bin/"$tool$version" &
to_wait+=($!)
fi
done
2020-11-08 14:36:21 +07:00
wait "${to_wait[@]}"
2020-02-21 09:28:19 +07:00
}
2020-05-27 17:53:52 +07:00
# Function to install packaged PHP
add_packaged_php() {
2020-07-22 13:10:30 +07:00
if [ "$runner" = "self-hosted" ] || [ "${use_package_cache:-true}" = "false" ]; then
2021-10-15 19:23:09 +07:00
add_ppa ondrej/php >/dev/null 2>&1 || update_ppa ondrej/php
IFS=' ' read -r -a packages <<<"$(echo "cli curl dev mbstring xml intl" | sed "s/[^ ]*/php$version-&/g")"
2021-08-10 03:07:46 +07:00
install_packages "${packages[@]}"
2020-07-22 13:10:30 +07:00
else
2020-11-11 03:53:45 +07:00
run_script "php-ubuntu" "$version"
2020-07-22 13:10:30 +07:00
fi
2020-05-27 17:53:52 +07:00
}
# Function to update PHP.
2020-02-21 09:28:19 +07:00
update_php() {
2021-11-18 21:10:47 +07:00
initial_version="$(php_semver)$(php_extra_version)"
add_php
updated_version="$(php_semver)$(php_extra_version)"
2020-02-21 09:28:19 +07:00
if [ "$updated_version" != "$initial_version" ]; then
status="Updated to"
else
2021-11-18 21:10:47 +07:00
status="Found"
2020-02-21 09:28:19 +07:00
fi
}
2020-05-27 17:53:52 +07:00
# Function to install PHP.
add_php() {
2020-11-08 14:36:21 +07:00
if [[ "$version" =~ ${nightly_versions:?} ]]; then
2020-10-12 20:03:13 +07:00
setup_nightly
2020-11-08 14:36:21 +07:00
elif [[ "$version" =~ ${old_versions:?} ]]; then
2020-05-27 17:53:52 +07:00
setup_old_versions
else
add_packaged_php
2021-11-18 21:10:47 +07:00
switch_version >/dev/null 2>&1
2020-05-27 17:53:52 +07:00
fi
status="Installed"
}
# Function to ini file for pear and link it to each SAPI.
link_pecl_file() {
echo '' | sudo tee "$pecl_file" >/dev/null 2>&1
for file in "${ini_file[@]}"; do
sapi_scan_dir="$(realpath -m "$(dirname "$file")")/conf.d"
[ "$sapi_scan_dir" != "$scan_dir" ] && ! [ -h "$sapi_scan_dir" ] && sudo ln -sf "$pecl_file" "$sapi_scan_dir/99-pecl.ini"
done
}
2021-07-12 18:30:40 +07:00
# Function to get extra version.
php_extra_version() {
2021-09-19 04:08:31 +07:00
if [ -e /etc/php/"$version"/COMMIT ]; then
2021-07-12 18:30:40 +07:00
echo " ($(cat "/etc/php/$version/COMMIT"))"
fi
}
2020-11-08 14:36:21 +07:00
# Function to Setup PHP
setup_php() {
step_log "Setup PHP"
sudo mkdir -m 777 -p /var/run /run/php
if [ "$(php-config --version 2>/dev/null | cut -c 1-3)" != "$version" ]; then
if [ ! -e "/usr/bin/php$version" ]; then
add_php >/dev/null 2>&1
else
2021-11-18 21:10:47 +07:00
if ! [[ "$version" =~ ${old_versions:?} ]]; then
switch_version >/dev/null 2>&1
fi
2020-11-08 14:36:21 +07:00
if [ "${update:?}" = "true" ]; then
update_php >/dev/null 2>&1
else
status="Switched to"
fi
fi
else
if [ "$update" = "true" ]; then
update_php >/dev/null 2>&1
else
status="Found"
fi
fi
2020-12-17 05:50:39 +07:00
if ! command -v php"$version" >/dev/null; then
add_log "$cross" "PHP" "Could not setup PHP $version"
exit 1
fi
2020-11-08 14:36:21 +07:00
semver=$(php_semver)
2021-07-12 18:30:40 +07:00
extra_version=$(php_extra_version)
2020-11-08 14:36:21 +07:00
ext_dir=$(php -i | grep "extension_dir => /" | sed -e "s|.*=> s*||")
scan_dir=$(php --ini | grep additional | sed -e "s|.*: s*||")
ini_dir=$(php --ini | grep "(php.ini)" | sed -e "s|.*: s*||")
2020-11-08 14:36:21 +07:00
pecl_file="$scan_dir"/99-pecl.ini
2021-09-02 20:54:08 +07:00
export ext_dir
mapfile -t ini_file < <(sudo find "$ini_dir/.." -name "php.ini" -exec readlink -m {} +)
link_pecl_file
2020-12-17 22:19:20 +07:00
configure_php
2020-11-08 14:36:21 +07:00
sudo rm -rf /usr/local/bin/phpunit >/dev/null 2>&1
sudo chmod 777 "${ini_file[@]}" "$pecl_file" "${tool_path_dir:?}"
sudo cp "$dist"/../src/configs/pm/*.json "$RUNNER_TOOL_CACHE/"
2021-07-12 18:30:40 +07:00
echo "::set-output name=php-version::$semver"
add_log "${tick:?}" "PHP" "$status PHP $semver$extra_version"
2020-11-08 14:36:21 +07:00
}
# Variables
version=$1
2020-10-05 07:45:50 +07:00
dist=$2
debconf_fix="DEBIAN_FRONTEND=noninteractive"
apt_install="sudo $debconf_fix apt-fast install -y --no-install-recommends"
scripts="${dist}"/../src/scripts
. /etc/os-release
2020-11-08 14:36:21 +07:00
# shellcheck source=.
. "${scripts:?}"/ext/source.sh
2021-08-10 03:07:46 +07:00
. "${scripts:?}"/tools/ppa.sh
. "${scripts:?}"/tools/add_tools.sh
. "${scripts:?}"/common.sh
2020-05-27 17:53:52 +07:00
read_env
2020-11-08 14:36:21 +07:00
self_hosted_setup
setup_php