Skip to content

Commit ae6c1b0

Browse files
committed
Don't add unnecessary extensions to the test INI for AppVeyor
Several extension test suites have already been changed to rely on the new behavior of `--EXTENSIONS--` section, i.e. to dynamically load required extensions on demand. Thus, there is no need to load these extensions always, which should improve the performance of executing the tests.
1 parent 6f89da7 commit ae6c1b0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

appveyor/build_task.bat

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ if %errorlevel% neq 0 exit /b 3
5151
if "%THREAD_SAFE%" equ "0" set ADD_CONF=%ADD_CONF% --disable-zts
5252
if "%INTRINSICS%" neq "" set ADD_CONF=%ADD_CONF% --enable-native-intrinsics=%INTRINSICS%
5353

54-
set EXT_EXCLUDE_FROM_TEST=snmp,oci8_12c,pdo_oci,pdo_firebird,ldap,imap,ftp
54+
set EXT_EXCLUDE_FROM_TEST=snmp,oci8_12c,pdo_oci,pdo_firebird,ldap,imap
55+
rem the following exts are tested via --EXTENSIONS--; update as necessary
56+
set EXT_EXCLUDE_FROM_TEST=bz2,exif,fileinfo,ffi,ftp,gd,gmp,soap,sodium,sqlite3,tidy,%EXT_EXCLUDE_FROM_TEST%
5557
if "%OPCACHE%" equ "0" set EXT_EXCLUDE_FROM_TEST=%EXT_EXCLUDE_FROM_TEST%,opcache
5658

5759
set CFLAGS=/W1 /WX

0 commit comments

Comments
 (0)