mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Merge branch 'PHP-8.2'
* PHP-8.2: Windows CI log verbosity, CI bat file guard
This commit is contained in:
commit
cd0c6bc74b
4 changed files with 20 additions and 0 deletions
5
.github/scripts/windows/build.bat
vendored
5
.github/scripts/windows/build.bat
vendored
|
@ -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
|
||||
|
|
5
.github/scripts/windows/build_task.bat
vendored
5
.github/scripts/windows/build_task.bat
vendored
|
@ -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
|
||||
|
|
5
.github/scripts/windows/test.bat
vendored
5
.github/scripts/windows/test.bat
vendored
|
@ -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
|
||||
|
|
5
.github/scripts/windows/test_task.bat
vendored
5
.github/scripts/windows/test_task.bat
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue