Test cache for PHP 8.3 and PHP 8.4

This commit is contained in:
Shivam Mathur 2023-11-24 01:06:24 +05:30
parent 7c6c249257
commit 99a92d54d5
No known key found for this signature in database
GPG Key ID: 3E13E4C8591ACC2A

View File

@ -100,10 +100,19 @@ add_devtools() {
} }
# Function to setup the nightly build from shivammathur/php-builder # Function to setup the nightly build from shivammathur/php-builder
setup_nightly() { setup_zts() {
run_script "php-builder" "${runner:?}" "$version" "${debug:?}" "${ts:?}" run_script "php-builder" "${runner:?}" "$version" "${debug:?}" "${ts:?}"
} }
# Function to setup the nightly build from shivammathur/php-builder
setup_nightly() {
if [ "$runner" = "self-hosted" ]; then
run_script "php-builder" "${runner:?}" "$version" "${debug:?}" "${ts:?}"
else
run_script "php-ubuntu" "$version" "${debug:?}"
fi
}
# Function to setup PHP 5.3, PHP 5.4 and PHP 5.5. # Function to setup PHP 5.3, PHP 5.4 and PHP 5.5.
setup_old_versions() { setup_old_versions() {
run_script "php5-ubuntu" "$version" run_script "php5-ubuntu" "$version"