Skip to content

Commit 9c08f53

Browse files
committed
chore: wip
1 parent 6105042 commit 9c08f53

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/precompile-php.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,12 @@ jobs:
229229
# Create configuration based on matrix config
230230
case "${{ matrix.config }}" in
231231
"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
233238
;;
234239
"laravel-postgres")
235240
# For PHP 8.1, disable intl extension to avoid ICU4C C++17 issues

0 commit comments

Comments
 (0)