mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Merge branch 'PHP-7.1'
* PHP-7.1: Guard against AppVeyor losing deps issue
This commit is contained in:
commit
b41d715511
1 changed files with 7 additions and 0 deletions
|
@ -22,6 +22,13 @@ echo Updating dependencies in %DEPS_DIR%
|
||||||
cmd /c phpsdk_deps --update --no-backup --branch %BRANCH% --stability %STABILITY% --deps %DEPS_DIR% --crt %PHP_BUILD_CRT%
|
cmd /c phpsdk_deps --update --no-backup --branch %BRANCH% --stability %STABILITY% --deps %DEPS_DIR% --crt %PHP_BUILD_CRT%
|
||||||
if %errorlevel% neq 0 exit /b 3
|
if %errorlevel% neq 0 exit /b 3
|
||||||
|
|
||||||
|
rem Something went wrong, most likely when concurrent builds were to fetch deps
|
||||||
|
rem updates. It might be, that some locking mechanism is needed.
|
||||||
|
if not exist "%DEPS_DIR%" (
|
||||||
|
cmd /c phpsdk_deps --update --force --no-backup --branch %BRANCH% --stability %STABILITY% --deps %DEPS_DIR%
|
||||||
|
)
|
||||||
|
if %errorlevel% neq 0 exit /b 3
|
||||||
|
|
||||||
cmd /c buildconf.bat --force
|
cmd /c buildconf.bat --force
|
||||||
if %errorlevel% neq 0 exit /b 3
|
if %errorlevel% neq 0 exit /b 3
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue