From 9cdec8195f92940046962b691c4374dbdda0e06b Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Wed, 22 May 2024 20:27:41 +0200 Subject: [PATCH] Fix Jenkins build --- src/it/MINVOKER-351/verify.groovy | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/it/MINVOKER-351/verify.groovy b/src/it/MINVOKER-351/verify.groovy index a5f80c79..afc487b0 100644 --- a/src/it/MINVOKER-351/verify.groovy +++ b/src/it/MINVOKER-351/verify.groovy @@ -21,6 +21,11 @@ def buildLog = new File(basedir, 'target/it/minvoker-351/build.log').text buildLog.contains('Special chars \tcharName=BEL: \u0007') - def surefireReport = new File(basedir, 'target/site/surefire-report.html').text assert surefireReport.contains('maven.invoker.it.minvoker-351') + +// TODO remove after next release +// Due to error parsing junit-reports by Jenkins with forbidden chars +new File(basedir, 'build.log').delete() + +return true \ No newline at end of file