Merge branch 'PHP-8.1' into PHP-8.2

* PHP-8.1:
  Windows CI log verbosity, CI bat file guard
This commit is contained in:
Ilija Tovilo 2023-03-16 00:05:21 +01:00
commit 40ae629462
No known key found for this signature in database
GPG Key ID: A4F5D403F118200A
4 changed files with 20 additions and 0 deletions

View File

@ -1,5 +1,10 @@
@echo off
if /i "%APPVEYOR%%GITHUB_ACTIONS%" neq "True" (
echo for CI only
exit /b 3
)
set SDK_REMOTE=https://github.com/php/php-sdk-binary-tools.git
set SDK_BRANCH=%PHP_BUILD_SDK_BRANCH%
set SDK_RUNNER=%PHP_BUILD_CACHE_SDK_DIR%\phpsdk-%PHP_BUILD_CRT%-%PLATFORM%.bat

View File

@ -1,5 +1,10 @@
@echo off
if /i "%APPVEYOR%%GITHUB_ACTIONS%" neq "True" (
echo for CI only
exit /b 3
)
if "%APPVEYOR%" equ "True" rmdir /s /q C:\cygwin >NUL 2>NUL
if %errorlevel% neq 0 exit /b 3
if "%APPVEYOR%" equ "True" rmdir /s /q C:\cygwin64 >NUL 2>NUL

View File

@ -1,5 +1,10 @@
@echo off
if /i "%APPVEYOR%%GITHUB_ACTIONS%" neq "True" (
echo for CI only
exit /b 3
)
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

View File

@ -1,5 +1,10 @@
@echo off
if /i "%APPVEYOR%%GITHUB_ACTIONS%" neq "True" (
echo for CI only
exit /b 3
)
set NO_INTERACTION=1
set REPORT_EXIT_STATUS=1
set SKIP_IO_CAPTURE_TESTS=1