Do one test build with AVX

This commit is contained in:
Anatol Belski 2018-05-31 12:32:15 +02:00
parent f2b4ec4bdc
commit 95258f2480
2 changed files with 3 additions and 1 deletions

View File

@ -39,6 +39,7 @@ environment:
OPCACHE: 0 OPCACHE: 0
- THREAD_SAFE: 1 - THREAD_SAFE: 1
OPCACHE: 1 OPCACHE: 1
INTRINSICS: AVX
services: services:
# the setup scripts have to be touched, once some other db version is used # the setup scripts have to be touched, once some other db version is used

View File

@ -36,7 +36,8 @@ if %errorlevel% neq 0 exit /b 3
cmd /c buildconf.bat --force cmd /c buildconf.bat --force
if %errorlevel% neq 0 exit /b 3 if %errorlevel% neq 0 exit /b 3
if "%THREAD_SAFE%" equ "0" set ADD_CONF=--disable-zts if "%THREAD_SAFE%" equ "0" set ADD_CONF=%ADD_CONF% --disable-zts
if "%INTRINSICS%" neq "" set ADD_CONF=%ADD_CONF% --enable-native-intrinsics=%INTRINSICS%
set EXT_EXCLUDE_FROM_TEST=snmp,oci8_12c,pdo_oci,pdo_firebird,interbase,ldap,imap,ftp set EXT_EXCLUDE_FROM_TEST=snmp,oci8_12c,pdo_oci,pdo_firebird,interbase,ldap,imap,ftp
if "%OPCACHE%" equ "0" set EXT_EXCLUDE_FROM_TEST=%EXT_EXCLUDE_FROM_TEST%,opcache if "%OPCACHE%" equ "0" set EXT_EXCLUDE_FROM_TEST=%EXT_EXCLUDE_FROM_TEST%,opcache