Skip to content

Commit

Permalink
Merge 87aaf31 into 6ae417b
Browse files Browse the repository at this point in the history
  • Loading branch information
doudou committed Sep 17, 2018
2 parents 6ae417b + 87aaf31 commit 338674c
Showing 1 changed file with 25 additions and 7 deletions.
32 changes: 25 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,39 +155,57 @@
"fileLocation": [
"absolute"
],
"pattern": {
"regexp": "^\\(\\d+\\) .+\\(([^\\)]+)\\): (failed in .* phase)$",
"file": 1,
"message": 2
}
"pattern": [
{
"regexp": "^\\(\\d+\\) .+\\(([^\\)]+)\\): (failed in .* phase)$",
"kind": "file",
"file": 1,
"message": 2
},
{
"regexp": "^ (.*)",
"message": 1,
"loop": true
}
]
},
{
"name": "autoproj-cmake-configure-error",
"owner": "autoproj",
"fileLocation": [
"absolute"
"relative"
],
"pattern": [
{
"regexp": "(?:Autobuild::CMake|Autobuild::Orogen):(?:[^:]+):configure: (?:.+\n)?CMake Error at ([/0-9a-zA-Z\\._-]+):(\\d+).*",
"file": 1,
"line": 2,
"message": 0
},
{
"regexp": "(?:Autobuild::CMake|Autobuild::Orogen):(?:[^:]+):configure: (?!Call Stack)(.*)",
"message": 1,
"loop": true
}
]
},
{
"name": "autoproj-cmake-configure-warning",
"owner": "autoproj",
"fileLocation": [
"absolute"
"relative"
],
"pattern": [
{
"regexp": "(?:Autobuild::CMake|Autobuild::Orogen):(?:[^:]+):configure: (?:.+\n)?CMake Warning at ([\\/0-9a-zA-Z\\._-]+):(\\d+).*",
"file": 1,
"line": 2,
"message": 0
},
{
"regexp": "(?:Autobuild::CMake|Autobuild::Orogen):(?:[^:]+):configure: (?!Call Stack)(.*)",
"message": 1,
"loop": true
}
]
},
Expand Down

0 comments on commit 338674c

Please sign in to comment.