Fix installing mongodb on PHP 7.1 (#483)

* Fix installing mongodb on PHP 7.1

Test: mongodb

* Run all docker images even if any of them fails
pull/486/head 1.4.8
Michele Locati 2021-12-15 16:16:24 +01:00 committed by GitHub
parent 1acba8984b
commit a0d2bd42a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -34,6 +34,7 @@ jobs:
runs-on: ubuntu-latest
needs: determine_extension_list
strategy:
fail-fast: false
matrix:
distro:
- alpine3.7

View File

@ -2322,6 +2322,8 @@ installRemoteModule() {
installRemoteModule_version=1.7.5
elif test $PHP_MAJMIN_VERSION -le 700; then
installRemoteModule_version=1.9.2
elif test $PHP_MAJMIN_VERSION -le 701; then
installRemoteModule_version=1.11.1
fi
fi
;;