File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -229,7 +229,12 @@ jobs:
229
229
# Create configuration based on matrix config
230
230
case "${{ matrix.config }}" in
231
231
"laravel-mysql")
232
- EXTENSIONS="--enable-cli --enable-fpm --enable-mbstring --enable-opcache --enable-intl --enable-exif --enable-bcmath --with-pdo-mysql --with-mysqli --enable-curl --with-openssl --enable-gd --with-zip --with-readline --enable-libxml --with-zlib"
232
+ # For PHP 8.1, disable intl extension to avoid ICU4C C++17 issues
233
+ if [[ "${{ matrix.php_version }}" == 8.1* ]]; then
234
+ EXTENSIONS="--enable-cli --enable-fpm --enable-mbstring --enable-opcache --enable-exif --enable-bcmath --with-pdo-mysql --with-mysqli --enable-curl --with-openssl --enable-gd --with-zip --with-readline --enable-libxml --with-zlib"
235
+ else
236
+ EXTENSIONS="--enable-cli --enable-fpm --enable-mbstring --enable-opcache --enable-intl --enable-exif --enable-bcmath --with-pdo-mysql --with-mysqli --enable-curl --with-openssl --enable-gd --with-zip --with-readline --enable-libxml --with-zlib"
237
+ fi
233
238
;;
234
239
"laravel-postgres")
235
240
# For PHP 8.1, disable intl extension to avoid ICU4C C++17 issues
You can’t perform that action at this time.
0 commit comments