mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
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:
commit
40ae629462
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…
Reference in New Issue
Block a user