Skip to content

Commit

Permalink
Test cache for PHP 8.3 and PHP 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
shivammathur committed Nov 23, 2023
1 parent 7c6c249 commit 99a92d5
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/scripts/linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,19 @@ add_devtools() {
}

# Function to setup the nightly build from shivammathur/php-builder
setup_nightly() {
setup_zts() {
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.
setup_old_versions() {
run_script "php5-ubuntu" "$version"
Expand Down

0 comments on commit 99a92d5

Please sign in to comment.