diff --git a/appveyor.yml b/appveyor.yml index 5d1141424..91ad14250 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -19,15 +19,16 @@ init: install: # Install PHP - - IF EXIST c:\php (SET PHP=0) ELSE (mkdir c:\php) + - IF EXIST c:\php (SET PHP=0) ELSE (SET PHP=1) + - IF %PHP%==1 mkdir c:\php - IF %PHP%==1 cd c:\php - - IF %PHP%==1 curl https://windows.php.net/downloads/releases/archives/php-7.1.0-Win32-VC14-x64.zip --output php.zip + - IF %PHP%==1 curl https://windows.php.net/downloads/releases/archives/php-7.1.5-Win32-VC14-x64.zip --output php.zip - IF %PHP%==1 7z x php.zip >nul - IF %PHP%==1 echo extension_dir=ext >> php.ini - IF %PHP%==1 echo extension=php_openssl.dll >> php.ini - - IF %PHP%==1 appveyor DownloadFile https://github.com/Microsoft/msphpsql/releases/download/4.1.4-Windows/7.1.zip - - IF %PHP%==1 7z x 7.1.zip >nul - - IF %PHP%==1 copy 7.1\x64\php_pdo_sqlsrv_71_ts.dll ext\php_pdo_sqlsrv_ts.dll + - IF %PHP%==1 curl https://github.com/Microsoft/msphpsql/releases/download/v4.3.0/Windows-7.1.zip -L --output sqlsrv.zip + - IF %PHP%==1 7z x sqlsrv.zip >nul + - IF %PHP%==1 copy Windows-7.1\x64\php_pdo_sqlsrv_71_ts.dll ext\php_pdo_sqlsrv_ts.dll - IF %PHP%==1 del /Q *.zip - cd c:\projects\database @@ -40,3 +41,7 @@ install: test_script: - vendor\bin\tester tests -s -c tests\php-win.ini + +on_failure: + # Print *.actual content + - for /r %%x in (*.actual) do ( type "%%x" )