From 9cd585da65a9ed51b87d7b8ed7a71651df3c694f Mon Sep 17 00:00:00 2001 From: Foivos Zakkak Date: Mon, 11 Dec 2023 17:03:38 +0200 Subject: [PATCH] [CI] Include maven ERROR messages in mandrel-integration-tests logs Make github comments a bit more verbose by including the maven ERROR lines in the filtered logs. --- .github/quarkus-ecosystem-issue.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/quarkus-ecosystem-issue.java b/.github/quarkus-ecosystem-issue.java index b7732ffb2bf0..58d468ca63bc 100644 --- a/.github/quarkus-ecosystem-issue.java +++ b/.github/quarkus-ecosystem-issue.java @@ -145,7 +145,13 @@ public void run() { } } } else if (job.getName().contains("Q Mandrel IT")) { - String fullContent = getJobsLogs(job, "mandrel-it-issue-number", "FAILURE [", "Z Error:"); + String fullContent = getJobsLogs(job, "mandrel-it-issue-number", + "FAILURE [", + "Z Error:", + " Time elapsed: ", + "Z [ERROR] ", + "Z [ERROR] Failures", + "Z [ERROR] Tests run:"); if (!fullContent.isEmpty()) { // Get the issue number for mandrel-integration-tests issues Matcher mandrelIssueNumberMatcher = Pattern.compile(" mandrel-it-issue-number: (\\d+)").matcher(fullContent);