mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
5aa96fe3d5
* PHP-7.1: Next round on AppVeyor reliability.
14 lines
283 B
Batchfile
14 lines
283 B
Batchfile
@echo off
|
|
|
|
set SDK_RUNNER=%PHP_BUILD_CACHE_SDK_DIR%\phpsdk-%PHP_BUILD_CRT%-%PLATFORM%.bat
|
|
if not exist "%SDK_RUNNER%" (
|
|
echo "%SDK_RUNNER%" doesn't exist
|
|
exit /b 3
|
|
)
|
|
|
|
cmd /c %SDK_RUNNER% -t %APPVEYOR_BUILD_FOLDER%\appveyor\test_task.bat
|
|
if %errorlevel% neq 0 exit /b 3
|
|
|
|
exit /b 0
|
|
|