1@echo off 2 3set SDK_RUNNER=%PHP_BUILD_CACHE_SDK_DIR%\phpsdk-%PHP_BUILD_CRT%-%PLATFORM%.bat 4if not exist "%SDK_RUNNER%" ( 5 echo "%SDK_RUNNER%" doesn't exist 6 exit /b 3 7) 8 9cmd /c %SDK_RUNNER% -t %APPVEYOR_BUILD_FOLDER%\.github\scripts\windows\test_task.bat 10if %errorlevel% neq 0 exit /b 3 11 12exit /b 0 13