test.bat 297 B

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