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 extractExtensionsFromDatapull/907/head
parent
749afd0a53
commit
b4a4872aff
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue