Skip to content

Commit b48159c

Browse files
authored
[CRCR] Exclude crcr-test from main HUD grid alongside L3/L4 filter (#8349)
## Summary Combines the two prior CRCR HUD-grid filters into the `crcr_hud_results` ClickHouse query so **both** apply: - **Only L3/L4 repos** (`downstream_repo_level IN ('L3', 'L4')`) — from #8343 - **Exclude `pytorch/crcr-test`** (`downstream_repo != 'pytorch/crcr-test'`) — from #8340 #8343 (L3/L4-only) landed on the same line as #8340 (crcr-test exclusion) and effectively replaced it, so `crcr-test` is currently only excluded implicitly (because it is L2). This re-adds the explicit `downstream_repo != 'pytorch/crcr-test'` filter on top of the L3/L4 filter, so `pytorch/crcr-test` stays off the main HUD grid even if it is ever promoted to L3/L4 (it is a synthetic CRCR health-check repo, not real downstream CI). crcr-test results remain visible on the dedicated CRCR pages (`/crcr`, `/crcr/pytorch/crcr-test`). ## Test plan - [ ] `pytorch/crcr-test` columns do not appear on `hud.pytorch.org/hud/pytorch/pytorch/main` - [ ] L3/L4 downstream repos (e.g. `TorchedHat/pytorch-redhat-ci`) still appear - [ ] L1/L2 repos remain excluded from the main grid - [ ] crcr-test data still shows on `/crcr` and `/crcr/pytorch/crcr-test` Refs #8343, #8340.
1 parent ed6f691 commit b48159c

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

  • torchci/clickhouse_queries/crcr_hud_results

torchci/clickhouse_queries/crcr_hud_results/query.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,6 @@ WHERE
1919
pr_number IN {prNums: Array(Int64)}
2020
AND pr_number > 0
2121
AND downstream_repo_level IN ('L3', 'L4')
22+
AND downstream_repo != 'pytorch/crcr-test'
2223
ORDER BY
2324
pr_number, downstream_repo, job_name

0 commit comments

Comments
 (0)