From 3dfaca4ee1969899299dbd115ce1a81b32f93bc7 Mon Sep 17 00:00:00 2001 From: Shivam Mathur Date: Wed, 26 Nov 2025 22:22:06 +0530 Subject: [PATCH] Rename nightly_versions -> php_builder_versions --- src/scripts/extensions/firebird.sh | 2 +- src/scripts/extensions/http.sh | 2 +- src/scripts/linux.sh | 2 +- src/scripts/unix.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/scripts/extensions/firebird.sh b/src/scripts/extensions/firebird.sh index 823b7627..5cc93468 100644 --- a/src/scripts/extensions/firebird.sh +++ b/src/scripts/extensions/firebird.sh @@ -31,7 +31,7 @@ add_firebird() { if ! check_extension pdo_firebird; then status="Installed and enabled" if [ "$(uname -s)" = "Linux" ]; then - if [[ "${version:?}" =~ 5.3|${nightly_versions:?} ]]; then + if [[ "${version:?}" =~ 5.3|${php_builder_versions:?} ]]; then add_firebird_helper /usr >/dev/null 2>&1 else add_pdo_extension firebird >/dev/null 2>&1 diff --git a/src/scripts/extensions/http.sh b/src/scripts/extensions/http.sh index 6880298e..34e1aa3f 100644 --- a/src/scripts/extensions/http.sh +++ b/src/scripts/extensions/http.sh @@ -61,7 +61,7 @@ add_http_helper() { export HTTP_CONFIGURE_OPTS="$http_configure_opts" export HTTP_LINUX_LIBS="zlib1g libbrotli-dev libcurl4-openssl-dev libevent-dev libicu-dev libidn2-dev" export HTTP_DARWIN_LIBS="brotli curl icu4c libevent libidn2" - if [[ "${version:?}" =~ ${nightly_versions:?} ]]; then + if ! [[ ${version:?} =~ 5.[3-6]|7.[0-4] ]]; then add_extension_from_source http https://github.com m6w6 ext-http master extension else add_extension_from_source pecl_http https://pecl.php.net http http "${ext##*-}" extension pecl diff --git a/src/scripts/linux.sh b/src/scripts/linux.sh index 3a5ddf62..93948634 100644 --- a/src/scripts/linux.sh +++ b/src/scripts/linux.sh @@ -187,7 +187,7 @@ update_php() { # Function to install PHP. add_php() { if [ "${runner:?}" = "self-hosted" ] || [ "${use_package_cache:-true}" = "false" ]; then - if [[ "$version" =~ ${nightly_versions:?} || "$ts" = "zts" ]]; then + if [[ "$version" =~ ${php_builder_versions:?} || "$ts" = "zts" ]]; then setup_php_builder else add_packaged_php diff --git a/src/scripts/unix.sh b/src/scripts/unix.sh index 0f32290d..989b40f6 100644 --- a/src/scripts/unix.sh +++ b/src/scripts/unix.sh @@ -4,7 +4,7 @@ export cross="✗" export curl_opts=(-sL) export old_versions="5.[3-5]" export jit_versions="8.[0-9]" -export nightly_versions="8.[3-9]" +export php_builder_versions="8.[3-9]" export xdebug3_versions="7.[2-4]|8.[0-9]" export latest="releases/latest/download" export github="https://github.com/shivammathur"