From ae128735ee55d8dd2f8388d34c6b582585a25d8b Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Fri, 4 Oct 2024 17:10:36 +0200 Subject: [PATCH] Don't build bless_tests.patch The bless_tests.patch had been introduced via PR #7204, but is no longer available due to PR #11566. Since apparently the patch is not that helpful, we remove the code which generates it. --- .github/scripts/windows/test_task.bat | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/scripts/windows/test_task.bat b/.github/scripts/windows/test_task.bat index 8498519b9a5ea..59ef2196d994a 100644 --- a/.github/scripts/windows/test_task.bat +++ b/.github/scripts/windows/test_task.bat @@ -130,15 +130,10 @@ set TEST_PHPDBG_EXECUTABLE=%PHP_BUILD_DIR%\phpdbg.exe mkdir c:\tests_tmp -nmake test TESTS="%OPCACHE_OPTS% -g FAIL,BORK,LEAK,XLEAK --no-progress -q --offline --show-diff --show-slow 1000 --set-timeout 120 --temp-source c:\tests_tmp --temp-target c:\tests_tmp --bless %PARALLEL%" +nmake test TESTS="%OPCACHE_OPTS% -g FAIL,BORK,LEAK,XLEAK --no-progress -q --offline --show-diff --show-slow 1000 --set-timeout 120 --temp-source c:\tests_tmp --temp-target c:\tests_tmp %PARALLEL%" set EXIT_CODE=%errorlevel% taskkill /f /im snmpd.exe -if %EXIT_CODE% GEQ 1 ( - git checkout ext\pgsql\tests\config.inc - git diff > bless_tests.patch -) - exit /b %EXIT_CODE%