php-src/appveyor/test.bat

14 lines
283 B
Batchfile
Raw Normal View History

2016-12-16 10:48:08 +00:00
@echo off
set SDK_RUNNER=%PHP_BUILD_CACHE_SDK_DIR%\phpsdk-%PHP_BUILD_CRT%-%PLATFORM%.bat
2016-12-16 10:48:08 +00:00
if not exist "%SDK_RUNNER%" (
echo "%SDK_RUNNER%" doesn't exist
exit /b 3
)
2017-06-16 23:57:47 +00:00
cmd /c %SDK_RUNNER% -t %APPVEYOR_BUILD_FOLDER%\appveyor\test_task.bat
if %errorlevel% neq 0 exit /b 3
2016-12-16 10:48:08 +00:00
2017-06-16 23:57:47 +00:00
exit /b 0