Allow including internal-only tryjobs via a footer

Bug: None
Change-Id: I60728f0e07aca188dd2de9984795cc8cd2c7d5d7
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/342700
Auto-Submit: Oleh Prypin <oprypin@google.com>
Commit-Queue: Oleh Prypin <oprypin@google.com>
Reviewed-by: Jeremy Leconte <jleconte@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#41883}
This commit is contained in:
Oleh Prypin 2024-03-12 11:37:36 +01:00 committed by WebRTC LUCI CQ
parent 1fc79ce4c4
commit a1d8665c31
2 changed files with 27 additions and 0 deletions

View File

@ -30,10 +30,20 @@ config_groups {
url: "https://webrtc-status.appspot.com"
}
tryjob {
builders {
name: "webrtc-internal/g3.webrtc-internal.try/internal_compile"
includable_only: true
owner_whitelist_group: "project-webrtc-internal-tryjob-access"
}
builders {
name: "webrtc-internal/g3.webrtc-internal.try/internal_compile_lite"
owner_whitelist_group: "project-webrtc-internal-tryjob-access"
}
builders {
name: "webrtc-internal/g3.webrtc-internal.try/internal_tests"
includable_only: true
owner_whitelist_group: "project-webrtc-internal-tryjob-access"
}
builders {
name: "webrtc/try/android_arm64_rel"
}

View File

@ -336,12 +336,29 @@ luci.cq_tryjob_verifier(
cq_group = "cq_infra",
)
# Internal-only tryjob always included into CQ:
luci.cq_tryjob_verifier(
builder = "webrtc-internal:g3.webrtc-internal.try/internal_compile_lite",
owner_whitelist = ["project-webrtc-internal-tryjob-access"],
cq_group = "cq",
)
# Includable via `Cq-Include-Trybots: webrtc-internal/g3.webrtc-internal.try:internal_compile`:
luci.cq_tryjob_verifier(
builder = "webrtc-internal:g3.webrtc-internal.try/internal_compile",
owner_whitelist = ["project-webrtc-internal-tryjob-access"],
cq_group = "cq",
includable_only = True,
)
# Includable via `Cq-Include-Trybots: webrtc-internal/g3.webrtc-internal.try:internal_tests`:
luci.cq_tryjob_verifier(
builder = "webrtc-internal:g3.webrtc-internal.try/internal_tests",
owner_whitelist = ["project-webrtc-internal-tryjob-access"],
cq_group = "cq",
includable_only = True,
)
# Notifier definitions:
luci.notifier(