From 7c620a108a7edac8f48eb42e7fccba5125868ca0 Mon Sep 17 00:00:00 2001 From: StefanStojanovic Date: Wed, 1 Jul 2026 08:23:25 +0200 Subject: [PATCH] jenkins,win: remove buildpulse support Fixes: https://github.com/nodejs/build/issues/3575 Signed-off-by: StefanStojanovic --- jenkins/scripts/windows/test.cmd | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/jenkins/scripts/windows/test.cmd b/jenkins/scripts/windows/test.cmd index e56039249..181cc9bbc 100644 --- a/jenkins/scripts/windows/test.cmd +++ b/jenkins/scripts/windows/test.cmd @@ -22,16 +22,16 @@ if exist test.tap ( tap2junit -i test.tap -o js-tests.junit.xml if errorlevel 1 exit /b ) -if exist js-tests.junit.xml ( - call %~dp0buildpulse.cmd js-tests.junit.xml -) +@REM if exist js-tests.junit.xml ( +@REM call %~dp0buildpulse.cmd js-tests.junit.xml +@REM ) if exist cctest.tap ( tap2junit -i cctest.tap -o cctest.junit.xml if errorlevel 1 exit /b ) -if exist cctest.junit.xml ( - call %~dp0buildpulse.cmd cctest.junit.xml -) +@REM if exist cctest.junit.xml ( +@REM call %~dp0buildpulse.cmd cctest.junit.xml +@REM ) :: The JUnit Plugin only marks the job as Unstable when it finds any kind of failure, including flaky tests. :: We need to use the return code of vcbuild.bat to fail the job when there are real failures.