0
0
Fork 0
mirror of https://github.com/actions-rs/cargo.git synced 2025-05-03 17:19:22 +03:00
This commit is contained in:
Teoh Han Hui 2022-01-13 14:43:23 +00:00 committed by GitHub
commit de8d9ef62c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
{
"problemMatcher": [
{
"owner": "rust",
"owner": "rust-diagnostic",
"pattern": [
{
"regexp": "^(warning|warn|error)(\\[(.*)\\])?: (.*)$",
@ -16,6 +16,27 @@
"column": 4
}
]
},
{
"owner": "rust-panic",
"pattern": [
{
"regexp": "^(thread\\s+'[^']+'\\s+panicked\\s+at\\s+'[^']+(?:'|$))(?:,\\s+([^/\\\\][^:]+):(\\d+):(\\d+))?",
"file": 2,
"line": 3,
"column": 4,
"message": 1
}
]
},
{
"owner": "rust-test-failure",
"pattern": [
{
"regexp": "^(test\\s+\\w+\\s+\\.{3}\\s+FAILED)",
"message": 1
}
]
}
]
}