Add cluster rules, fix bug instance
Bug: b/227310186 Change-Id: I39fa3204f0dd6b514dc468b29faa819c644486a8 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/262942 Commit-Queue: Christoffer Jansson <jansson@webrtc.org> Reviewed-by: Jeremy Leconte <jleconte@google.com> Cr-Commit-Position: refs/heads/main@{#36943}
This commit is contained in:
parent
f8c81ca469
commit
afe1680609
@ -14,13 +14,18 @@ bug_filing_threshold {
|
||||
}
|
||||
clustering {
|
||||
test_name_rules {
|
||||
name: "Tast Tests"
|
||||
pattern: "^tast\\.(?P<suite>([^.]+))\\.(?P<testname>([^.]+))\\..*$"
|
||||
like_template: "tast.${suite}.${testname}.%"
|
||||
name: "Google Test (Type-parameterized)"
|
||||
pattern: "^ninja:(?P<target>[\\w/]+:\\w+)/(\\w+/)?(?P<suite>\\w+)/\\w+\\.(?P<case>\\w+)$"
|
||||
like_template: "ninja:${target}/%${suite}/%.${case}"
|
||||
}
|
||||
test_name_rules {
|
||||
name: "Google Test (Value-parameterized)"
|
||||
pattern: "^ninja:(?P<target>[\\w/]+:\\w+)/(\\w+/)?(?P<suite>\\w+)\\.(?P<case>\\w+)/[\\w.]+$"
|
||||
like_template: "ninja:${target}/%${suite}.${case}%"
|
||||
}
|
||||
}
|
||||
monorail {
|
||||
project: "chromium"
|
||||
project: "webrtc"
|
||||
default_field_values {
|
||||
# Type field.
|
||||
field_id: 10
|
||||
@ -66,5 +71,53 @@ monorail {
|
||||
}
|
||||
priority_hysteresis_percent: 50
|
||||
monorail_hostname: "monorail-staging.appspot.com"
|
||||
display_prefix: "crbug.com"
|
||||
display_prefix: "bugs.webrtc.org"
|
||||
}
|
||||
|
||||
realms {
|
||||
name: "ci"
|
||||
test_variant_analysis {
|
||||
update_test_variant_task {
|
||||
update_test_variant_task_interval {
|
||||
seconds: 3600 # 1 hour
|
||||
}
|
||||
test_variant_status_update_duration {
|
||||
seconds: 86400 # 24 hours
|
||||
}
|
||||
}
|
||||
bq_exports {
|
||||
table {
|
||||
cloud_project: "webrtc-ci"
|
||||
dataset: "weetbix"
|
||||
table: "ci_flaky_test_variants"
|
||||
}
|
||||
predicate {
|
||||
status: FLAKY
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
realms {
|
||||
name: "try"
|
||||
test_variant_analysis {
|
||||
update_test_variant_task {
|
||||
update_test_variant_task_interval {
|
||||
seconds: 3600 # 1 hour
|
||||
}
|
||||
test_variant_status_update_duration {
|
||||
seconds: 86400 # 24 hours
|
||||
}
|
||||
}
|
||||
bq_exports {
|
||||
table {
|
||||
cloud_project: "webrtc-ci"
|
||||
dataset: "weetbix"
|
||||
table: "try_flaky_test_variants"
|
||||
}
|
||||
predicate {
|
||||
status: FLAKY
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -14,13 +14,18 @@ bug_filing_threshold {
|
||||
}
|
||||
clustering {
|
||||
test_name_rules {
|
||||
name: "Tast Tests"
|
||||
pattern: "^tast\\.(?P<suite>([^.]+))\\.(?P<testname>([^.]+))\\..*$"
|
||||
like_template: "tast.${suite}.${testname}.%"
|
||||
name: "Google Test (Type-parameterized)"
|
||||
pattern: "^ninja:(?P<target>[\\w/]+:\\w+)/(\\w+/)?(?P<suite>\\w+)/\\w+\\.(?P<case>\\w+)$"
|
||||
like_template: "ninja:${target}/%${suite}/%.${case}"
|
||||
}
|
||||
test_name_rules {
|
||||
name: "Google Test (Value-parameterized)"
|
||||
pattern: "^ninja:(?P<target>[\\w/]+:\\w+)/(\\w+/)?(?P<suite>\\w+)\\.(?P<case>\\w+)/[\\w.]+$"
|
||||
like_template: "ninja:${target}/%${suite}.${case}%"
|
||||
}
|
||||
}
|
||||
monorail {
|
||||
project: "chromium"
|
||||
project: "webrtc"
|
||||
default_field_values {
|
||||
# Type field.
|
||||
field_id: 10
|
||||
@ -66,6 +71,53 @@ monorail {
|
||||
}
|
||||
priority_hysteresis_percent: 50
|
||||
monorail_hostname: "bugs.chromium.org"
|
||||
display_prefix: "crbug.com"
|
||||
display_prefix: "bugs.webrtc.org"
|
||||
}
|
||||
|
||||
realms {
|
||||
name: "ci"
|
||||
test_variant_analysis {
|
||||
update_test_variant_task {
|
||||
update_test_variant_task_interval {
|
||||
seconds: 3600 # 1 hour
|
||||
}
|
||||
test_variant_status_update_duration {
|
||||
seconds: 86400 # 24 hours
|
||||
}
|
||||
}
|
||||
bq_exports {
|
||||
table {
|
||||
cloud_project: "webrtc-ci"
|
||||
dataset: "weetbix"
|
||||
table: "ci_flaky_test_variants"
|
||||
}
|
||||
predicate {
|
||||
status: FLAKY
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
realms {
|
||||
name: "try"
|
||||
test_variant_analysis {
|
||||
update_test_variant_task {
|
||||
update_test_variant_task_interval {
|
||||
seconds: 3600 # 1 hour
|
||||
}
|
||||
test_variant_status_update_duration {
|
||||
seconds: 86400 # 24 hours
|
||||
}
|
||||
}
|
||||
bq_exports {
|
||||
table {
|
||||
cloud_project: "webrtc-ci"
|
||||
dataset: "weetbix"
|
||||
table: "try_flaky_test_variants"
|
||||
}
|
||||
predicate {
|
||||
status: FLAKY
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user