Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[HUD] Change workflow startup failure #5165

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions torchci/rockset/commons/__sql/commit_jobs_query.sql
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,11 @@ WITH
workflow._event_time AS time,
workflow.head_sha AS sha,
workflow.name AS job_name,
'Workflow Startup Failure' AS workflow_name,
workflow.name AS workflow_name,
workflow.id,
null AS workflow_id,
workflow.artifacts_url AS github_artifact_url,
IF(
workflow.conclusion IS NULL and workflow.completed_at IS NULL and workflow.status = 'queued',
'failure',
workflow.conclusion
) as conclusion,
IF(workflow.conclusion = 'startup_failure', 'failure', workflow.conclusion) AS conclusion,
workflow.html_url,
null AS log_url,
DATE_DIFF(
Expand Down
2 changes: 1 addition & 1 deletion torchci/rockset/prodVersions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"commons": {
"annotated_flaky_jobs": "bd991c8c9782f339",
"hud_query": "69f0bc9a618c82b1",
"commit_jobs_query": "10d4a302d49906bb",
"commit_jobs_query": "319e0669f1cbab22",
"disabled_non_flaky_tests": "f909abf9eec15b56",
"commit_failed_jobs": "2884aac8948770e4",
"filter_forced_merge_pr": "a28350c863e36239",
Expand Down
Loading