Skip to content

Commit

Permalink
Move CI to 8.4
Browse files Browse the repository at this point in the history
Signed-off-by: Maciej Koprek <[email protected]>
  • Loading branch information
Maciej Koprek committed Oct 12, 2024
1 parent b961881 commit f5f8e0c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .laminas-ci/install-apcu-extension-via-pecl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

PHP_VERSION="$1"

if ! [[ "${PHP_VERSION}" =~ 8\.3 ]]; then
echo "mongodb is only installed from pecl for PHP 8.3, ${PHP_VERSION} detected."
if ! [[ "${PHP_VERSION}" =~ 8\.4 ]]; then
echo "mongodb is only installed from pecl for PHP 8.4, ${PHP_VERSION} detected."
exit 0;
fi

Expand Down
2 changes: 1 addition & 1 deletion .laminas-ci/install-memcached-extension-via-pecl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

PHP_VERSION="$1"

if ! [[ "${PHP_VERSION}" =~ 8\.3 ]]; then
if ! [[ "${PHP_VERSION}" =~ 8\.4 ]]; then
echo "memcached is only installed from pecl for PHP 8.3, ${PHP_VERSION} detected."
exit 0;
fi
Expand Down
2 changes: 1 addition & 1 deletion .laminas-ci/install-mongodb-extension-via-pecl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

PHP_VERSION="$1"

if ! [[ "${PHP_VERSION}" =~ 8\.3 ]]; then
if ! [[ "${PHP_VERSION}" =~ 8\.4 ]]; then
echo "mongodb is only installed from pecl for PHP 8.3, ${PHP_VERSION} detected."
exit 0;
fi
Expand Down
2 changes: 1 addition & 1 deletion .laminas-ci/install-redis-extension-via-pecl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

PHP_VERSION="$1"

if ! [[ "${PHP_VERSION}" =~ 8\.3 ]]; then
if ! [[ "${PHP_VERSION}" =~ 8\.4 ]]; then
echo "redis is only installed from pecl for PHP 8.3, ${PHP_VERSION} detected."
exit 0;
fi
Expand Down
2 changes: 0 additions & 2 deletions .laminas-ci/pre-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ WORKING_DIRECTORY=$2
JOB=$3
PHP_VERSION=$(echo "${JOB}" | jq -r '.php')

echo $PHP_VERSION

if [ ! -z "$GITHUB_BASE_REF" ] && [[ "$GITHUB_BASE_REF" =~ ^[0-9]+\.[0-9] ]]; then
readarray -td. TARGET_BRANCH_VERSION_PARTS <<<"${GITHUB_BASE_REF}.";
unset 'TARGET_BRANCH_VERSION_PARTS[-1]';
Expand Down

0 comments on commit f5f8e0c

Please sign in to comment.