From e7f05436d9ab62891158717abe227b77c0cf9757 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 6 Jul 2020 13:27:50 +0200 Subject: ci: Fix up problemmatcher patterns We need to have a message for the file/line we get from a stacktrace - let's see if it works out to take it from the next "E ..." line. --- scripts/dev/ci/problemmatchers.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/dev/ci/problemmatchers.py b/scripts/dev/ci/problemmatchers.py index 5756dd41b..e492c714b 100644 --- a/scripts/dev/ci/problemmatchers.py +++ b/scripts/dev/ci/problemmatchers.py @@ -160,6 +160,10 @@ MATCHERS = { "regexp": r'^\033\[1m\033\[31m([^\033]*)\033\[0m:(\d+): .*', "file": 1, "line": 2, + }, + { + "regexp": r'^\033\[1m\033\[31mE\s+([^\033]*)\033\[0m$', + "message": 1, } ], }, -- cgit v1.2.3-54-g00ecf