Recognize DISK_FULL failure messages (review_dev)
When a job is killed by zuul due to failure like DISK_FULL, a different message ends up in as a comment. <li>job-name finger://ze09.openstack.org/8b6d...6f : DISK_FULL in 2h 59m 50s</li> This adds another pattern that recognize these messages as failures, regardess the case (DISK_FULL in this case). Change-Id: Ib17f05a043430362b02a2826d69572f6b2dbd64a Needed-By: https://review.opendev.org/#/c/631509/
This commit is contained in:
parent
b0ea150b89
commit
3792315db5
@ -123,6 +123,11 @@ class openstack_project::review_dev (
|
||||
match => '<li>([^ ]+) <a href=\"[^\"]+\" target=\"_blank\" rel=\"nofollow\">([^<]+)</a> : ([^ ]+)([^<]*)</li>',
|
||||
html => '<li class=\"comment_test\"><span class=\"comment_test_name\"><a href=\"$2\" rel=\"nofollow\">$1</a></span> <span class=\"comment_test_result\"><span class=\"result_$3\">$3</span>$4</span></li>',
|
||||
},
|
||||
{
|
||||
name => 'testresultabort',
|
||||
match => '<li>([^ ]*) (finger://[^ ]*) : ([^ ]*)([^<]*)</li>',
|
||||
html => '<li class=\"comment_test\"><span class=\"comment_test_name\">$1</span> <span class=\"comment_test_result\"><span class=\"result_FAILURE\">$3</span>$4</span></li>',
|
||||
},
|
||||
{
|
||||
name => 'launchpadbug',
|
||||
match => '<a href=\"(https://bugs\\\\.launchpad\\\\.net/[a-zA-Z0-9\\\\.]+/\\\\+bug/(\\\\d+))[^\"]*\">[^<]+</a>',
|
||||
|
Loading…
Reference in New Issue
Block a user