From b4a4872aff830063f9f8ef155f52e2ae62c010bd Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Thu, 4 Apr 2024 18:50:37 +0200 Subject: [PATCH] Add support for gearman on PHP 8.1/8.2/8.3 (#903) * Add support for gearman on PHP 8.1/8.2/8.3 * Fix extractExtensionsFromData --- data/supported-extensions | 2 +- scripts/ci-test-extensions | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/supported-extensions b/data/supported-extensions index eeb89d1..b97b4a1 100644 --- a/data/supported-extensions +++ b/data/supported-extensions @@ -23,7 +23,7 @@ exif 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 ffi 7.4 8.0 8.1 8.2 8.3 ftp 8.2 8.3 gd 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 -gearman 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 +gearman 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 geoip 5.5 5.6 7.0 7.1 7.2 7.3 7.4 geos 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 geospatial 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 diff --git a/scripts/ci-test-extensions b/scripts/ci-test-extensions index 59a6dc2..c12f068 100755 --- a/scripts/ci-test-extensions +++ b/scripts/ci-test-extensions @@ -86,7 +86,7 @@ extractExtensionsFromData() { IFS=' ' extractExtensionsFromData_foundAt= - for extractExtensionsFromData_line in $(git -C "$CI_BUILD_DIR" diff --no-indent-heuristic --minimal --no-color --word-diff=none -no-renames --unified=0 "$CI_COMMIT_RANGE" -- data/supported-extensions); do + for extractExtensionsFromData_line in $(git -C "$CI_BUILD_DIR" diff --no-indent-heuristic --minimal --no-color --word-diff=none --no-renames --unified=0 "$CI_COMMIT_RANGE" -- data/supported-extensions); do if test -n "$extractExtensionsFromData_line"; then if test -z "$extractExtensionsFromData_foundAt"; then if test -z "${extractExtensionsFromData_line##@@*}"; then