-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathdrci.ts
1193 lines (1094 loc) · 35.1 KB
/
drci.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { PutObjectCommand } from "@aws-sdk/client-s3";
import dayjs from "dayjs";
import utc from "dayjs/plugin/utc";
import { fetchJSON, isTime0 } from "lib/bot/utils";
import { queryClickhouse } from "lib/clickhouse";
import {
CANCELLED_STEP_ERROR,
fetchPRLabels,
FLAKY_RULES_JSON,
formDrciComment,
formDrciSevBody,
getActiveSEVs,
getDrciComment,
getPRMergeCommits,
getSuppressedLabels,
hasSimilarFailures,
hasSimilarFailuresInSamePR,
HUD_URL,
isExcludedFromBrokenTrunk,
isExcludedFromFlakiness,
isExcludedFromSimilarityPostProcessing,
isInfraFlakyJob,
isLogClassifierFailed,
NUM_MINUTES,
OWNER,
} from "lib/drciUtils";
import { fetchCommitTimestamp } from "lib/fetchCommit";
import fetchIssuesByLabel from "lib/fetchIssuesByLabel";
import fetchPR from "lib/fetchPR";
import {
fetchFailedJobsFromCommits,
fetchRecentWorkflows,
} from "lib/fetchRecentWorkflows";
import { getOctokit } from "lib/github";
import {
backfillMissingLog,
getDisabledTestIssues,
getOpenUnstableIssues,
isDisabledTest,
isDisabledTestMentionedInPR,
isRecentlyCloseDisabledTest,
isSameFailure,
isUnstableJob,
removeCancelledJobAfterRetry,
removeJobNameSuffix,
} from "lib/jobUtils";
import { getS3Client } from "lib/s3";
import { IssueData, PRandJobs, RecentWorkflowsData } from "lib/types";
import _ from "lodash";
import type { NextApiRequest, NextApiResponse } from "next";
import { Octokit } from "octokit";
dayjs.extend(utc);
export interface FlakyRule {
name: string;
captures: string[];
}
export interface UpdateCommentBody {
repo: string;
}
// Attempt to set the maxDuration of this serveless function on Vercel https://vercel.com/docs/functions/configuring-functions/duration,
// also according to https://vercel.com/docs/functions/runtimes#max-duration, the max duration
// for an enterprise account is 900
export const maxDuration = 900;
export const dynamic = "force-dynamic";
export default async function handler(
req: NextApiRequest,
res: NextApiResponse<{
[pr: number]: { [cat: string]: RecentWorkflowsData[] };
}>
) {
const authorization = req.headers.authorization;
if (authorization === process.env.DRCI_BOT_KEY) {
const { prNumber } = req.query;
const { repo }: UpdateCommentBody = req.body;
const octokit = await getOctokit(OWNER, repo);
const failures = await updateDrciComments(
octokit,
repo,
prNumber ? [parseInt(prNumber as string)] : []
);
res.status(200).json(failures);
}
res.status(403).end();
}
export async function updateDrciComments(
octokit: Octokit,
repo: string = "pytorch",
prNumbers: number[]
): Promise<{ [pr: number]: { [cat: string]: RecentWorkflowsData[] } }> {
// Fetch in two separate queries because combining into one query took much
// longer to run on CH
const [recentWorkflows, workflowsFromPendingComments] = await Promise.all([
fetchRecentWorkflows(`${OWNER}/${repo}`, prNumbers, NUM_MINUTES + ""),
// Only fetch if we are not updating a specific PR
prNumbers.length != 0
? []
: fetchRecentWorkflows(
`${OWNER}/${repo}`,
await getPRsWithPendingJobInComment(`${OWNER}/${repo}`),
NUM_MINUTES + ""
),
]);
const workflowsByPR = await reorganizeWorkflows(
OWNER,
repo,
recentWorkflows.concat(workflowsFromPendingComments),
octokit
);
const head = get_head_branch(repo);
await addMergeBaseCommits(octokit, repo, head, workflowsByPR);
const sevs = getActiveSEVs(await fetchIssuesByLabel("ci: sev"));
const flakyRules: FlakyRule[] = (await fetchJSON(FLAKY_RULES_JSON)) || [];
const unstableIssues: IssueData[] = await fetchIssuesByLabel("unstable");
const disabledTestIssues: IssueData[] = await fetchIssuesByLabel("skipped");
const baseCommitJobs = await getBaseCommitJobs(workflowsByPR);
const existingDrCiComments = await getExistingDrCiComments(
`${OWNER}/${repo}`,
workflowsByPR
);
const prMergeCommits = await getPRMergeCommits(
OWNER,
repo,
Array.from(workflowsByPR.keys())
);
// Return the list of all failed jobs grouped by their classification
const failures: { [pr: number]: { [cat: string]: RecentWorkflowsData[] } } =
{};
await forAllPRs(
workflowsByPR,
async (pr_info: PRandJobs) => {
// Find the merge commits of the PR to check if it has already been merged before
const mergeCommits = prMergeCommits.get(pr_info.pr_number) || [];
const labels = await fetchPRLabels(
pr_info.owner,
pr_info.repo,
pr_info.pr_number
);
const {
pending,
failedJobs,
flakyJobs,
brokenTrunkJobs,
unstableJobs,
relatedJobs,
relatedIssues,
relatedInfo,
} = await getWorkflowJobsStatuses(
pr_info,
flakyRules,
baseCommitJobs.get(pr_info.merge_base) || new Map(),
labels || [],
unstableIssues || [],
disabledTestIssues || [],
mergeCommits || []
);
failures[pr_info.pr_number] = {
FAILED: failedJobs,
FLAKY: flakyJobs,
BROKEN_TRUNK: brokenTrunkJobs,
UNSTABLE: unstableJobs,
};
const failureInfo = constructResultsComment(
pending,
failedJobs,
flakyJobs,
brokenTrunkJobs,
unstableJobs,
relatedJobs,
relatedIssues,
relatedInfo,
pr_info.head_sha,
pr_info.merge_base,
pr_info.merge_base_date,
HUD_URL,
OWNER,
repo,
pr_info.pr_number
);
const comment = formDrciComment(
pr_info.pr_number,
OWNER,
repo,
failureInfo,
formDrciSevBody(sevs)
);
const { id, body } =
existingDrCiComments.get(pr_info.pr_number) ||
(await getDrciComment(octokit, OWNER, repo, pr_info.pr_number));
// The comment is there and remains unchanged, so there is no need to do anything
if (body === comment) {
return;
}
// If the id is 0, it means that the bot has failed to create the comment, so we
// are free to create a new one here
if (id === 0) {
await octokit.rest.issues.createComment({
body: comment,
owner: OWNER,
repo: repo,
issue_number: pr_info.pr_number,
});
}
// Otherwise, update the existing comment
else {
await octokit.rest.issues.updateComment({
body: comment,
owner: OWNER,
repo: repo,
comment_id: id,
});
}
// Also update the check run status. As this is run under pytorch-bot,
// the check run will show up under that GitHub app
await octokit.rest.checks.create({
owner: OWNER,
repo: repo,
name: "Dr.CI",
head_sha: pr_info.head_sha,
status: "completed",
conclusion: "neutral",
output: {
title: "Dr.CI classification results",
// NB: the summary contains the classification result from Dr.CI,
// so that it can be queried elsewhere
summary: JSON.stringify(
removeFailureContext(failures[pr_info.pr_number])
),
},
});
},
async (pr_info: PRandJobs, e: Error) => {
console.log("Failed to update PR", pr_info.pr_number, e);
}
);
return failures;
}
/**
* Changes the failure context of each job to an empty array. This is done to
* reduce the size of the payload, which can some times exceed the maximum size
* allowed by GitHub
* @param failure
* @returns
*/
function removeFailureContext(failure: {
[cat: string]: RecentWorkflowsData[];
}) {
const result = { ...failure };
for (const cat in result) {
result[cat] = result[cat].map((job) => {
return { ...job, failure_context: [] };
});
}
return result;
}
/**
* Returns a list of PR numbers whose Dr. CI comments were updated recently and
* contain the hourglass icon, indicating that there is a pending job. Used for
* getting a list of PRs to backfill ex if Dr. CI fails to update the comment
* due to an error
* @param repo The repository to search for PRs in. E.g. "pytorch/pytorch"
* @returns A list of PR numbers
*/
async function getPRsWithPendingJobInComment(repo: String): Promise<number[]> {
const query = `
select
issue_url
from
default.issue_comment final
where
body like '<!-- drci-comment-start -->%'
and match(body, '\\d Pending')
and issue_comment.updated_at > now() - interval 1 month
and issue_url like {repo: String}`;
const results = await queryClickhouse(query, { repo: `%${repo}%` });
return results.map((v) => parseInt(v.issue_url.split("/").pop()));
}
async function forAllPRs(
workflowsByPR: Map<number, PRandJobs>,
func: CallableFunction,
errorFunc: CallableFunction
) {
await Promise.all(
Array.from(workflowsByPR.values()).map(async (pr_info) => {
try {
await func(pr_info);
} catch (e) {
await errorFunc(pr_info, e);
}
})
);
}
function get_head_branch(_repo: string) {
return "main";
}
async function addMergeBaseCommits(
octokit: Octokit,
repo: string,
head: string,
workflowsByPR: Map<number, PRandJobs>
) {
const mergeBasesQuery = `
select
sha as head_sha,
merge_base,
merge_base_commit_date,
from
merge_bases
where
sha in {shas: Array(String)}
and merge_base_commit_date != 0
and repo = {repo: String}
`;
const s3client = getS3Client();
const chMergeBases = new Map(
(
await queryClickhouse(mergeBasesQuery, {
shas: Array.from(workflowsByPR.values()).map((v) => v.head_sha),
repo: `${OWNER}/${repo}`,
})
)?.map((v) => [v.head_sha, v])
);
await forAllPRs(
workflowsByPR,
async (pr_info: PRandJobs) => {
const chMergeBase = chMergeBases.get(pr_info.head_sha);
if (chMergeBase === undefined) {
// Not found on CH, ask github instead, then put into dynamo, which will
// get synced with CH
const diff = await octokit.rest.repos.compareCommits({
owner: OWNER,
repo: repo,
base: pr_info.head_sha,
head: head,
});
pr_info.merge_base = diff.data.merge_base_commit.sha;
pr_info.merge_base_date =
diff.data.merge_base_commit.commit.committer?.date ?? "";
const diffWithMergeBase = await octokit.rest.repos.compareCommits({
owner: OWNER,
repo: repo,
base: pr_info.merge_base,
head: pr_info.head_sha,
});
try {
const data = {
sha: pr_info.head_sha,
merge_base: pr_info.merge_base,
changed_files: diffWithMergeBase.data.files?.map((e) => e.filename),
merge_base_commit_date: pr_info.merge_base_date,
repo: `${OWNER}/${repo}`,
_id: `${OWNER}-${repo}-${pr_info.head_sha}`,
};
s3client.send(
new PutObjectCommand({
Bucket: "ossci-raw-job-status",
Key: `merge_bases/${OWNER}/${repo}/${pr_info.head_sha}.gzip`,
Body: JSON.stringify(data),
ContentType: "application/json",
})
);
} catch (e) {
console.error("Failed to upload to S3", e);
}
} else {
pr_info.merge_base = chMergeBase.merge_base;
pr_info.merge_base_date = chMergeBase.merge_base_commit_date;
}
},
// NB (huydhn): This function couldn't find merge base for ghstack PR and
// always throw an error in that case, so I decide to not print anything
// here to void confusion when seeing this error in the log
async (pr_info: PRandJobs, _e: Error) => {
// Insert dummy values if merge base can't be found
pr_info.merge_base =
"failed to retrieve merge base, please contact dev infra";
// NB: Leave the merge base date empty or undefined here, any mock value
// like 0 is treated as a timestamp to use when quering similar failures
pr_info.merge_base_date = "";
}
);
}
export async function getBaseCommitJobs(
workflowsByPR: Map<number, PRandJobs>
): Promise<Map<string, Map<string, RecentWorkflowsData[]>>> {
// get merge base shas
let baseShas = [];
for (const [_, pr_info] of workflowsByPR) {
baseShas.push(pr_info.merge_base);
}
// fetch failing jobs on those shas
const commitFailedJobsQueryResult = await fetchFailedJobsFromCommits(
baseShas
);
// reorganize into a map of sha -> name -> data
const jobsBySha = new Map();
for (const job of commitFailedJobsQueryResult) {
if (!jobsBySha.has(job.head_sha)) {
jobsBySha.set(job.head_sha, new Map());
}
const existing_job = jobsBySha.get(job.head_sha).get(job.name);
if (!existing_job || existing_job.id < job.id) {
// if rerun, choose the job with the larger id as that is more recent
jobsBySha.get(job.head_sha).set(job.name, job);
}
}
const jobsByShaByName = new Map();
// regroup the list of failed jobs one more time to remove the shard ID and
// the unstable suffix. The former is not needed because the tests could be
// run by another shard and failed the same way. The unstable suffix is also
// not needed because it's there only to decorate the job name.
for (const sha of jobsBySha.keys()) {
if (!jobsByShaByName.has(sha)) {
jobsByShaByName.set(sha, new Map());
}
for (const jobName of jobsBySha.get(sha).keys()) {
const jobNameNoSuffix = removeJobNameSuffix(jobName);
const job = jobsBySha.get(sha).get(jobName);
if (!jobsByShaByName.get(sha).has(jobNameNoSuffix)) {
jobsByShaByName.get(sha).set(jobNameNoSuffix, []);
}
jobsByShaByName.get(sha).get(jobNameNoSuffix).push(job);
}
}
return jobsByShaByName;
}
async function getExistingDrCiComments(
repoFullName: string,
workflowsByPR: Map<number, PRandJobs>
) {
const existingCommentsQuery = `
select
id,
body,
issue_url
from
default.issue_comment final
where
body like '%<!-- drci-comment-start -->%'
and issue_url in {prUrls: Array(String)}
`;
return new Map(
(
await queryClickhouse(existingCommentsQuery, {
prUrls: Array.from(workflowsByPR.keys()).map(
(prNumber) =>
`https://api.github.com/repos/${repoFullName}/issues/${prNumber}`
),
})
)?.map((v) => [
parseInt(v.issue_url.split("/").pop()),
{ id: parseInt(v.id), body: v.body },
])
);
}
function constructResultsJobsSections(
hudBaseUrl: string,
owner: string,
repo: string,
prNumber: number,
header: string,
description: string,
jobs: RecentWorkflowsData[],
suggestion?: string,
collapsed: boolean = false,
relatedJobs: Map<number, RecentWorkflowsData> = new Map(),
relatedIssues: Map<number, IssueData[]> = new Map(),
relatedInfo: Map<number, string> = new Map()
): string {
if (jobs.length === 0) {
return "";
}
let output = `\n<details ${
collapsed ? "" : "open"
}><summary><b>${header}</b> - ${description}:</summary>`;
if (suggestion) {
output += `<p>👉 <b>${suggestion}</b></p>`;
}
output += "<p>\n\n"; // Two newlines are needed for bullts below to be formattec correctly
const hudPrUrl = `${hudBaseUrl}/pr/${owner}/${repo}/${prNumber}`;
const jobsSorted = jobs.sort((a, b) => a.name.localeCompare(b.name));
for (const job of jobsSorted) {
output += `* [${job.name}](${hudPrUrl}#${job.id}) ([gh](${job.html_url}))`;
const relatedJob = relatedJobs.get(job.id);
// Show the related trunk failure for broken trunk or the similar failure for flaky
if (relatedJob !== undefined) {
const hudCommitUrl = `${hudBaseUrl}/${owner}/${repo}/commit/${relatedJob.head_sha}`;
const relatedJobUrl = `${hudCommitUrl}#${relatedJob.id}`;
if (header === "BROKEN TRUNK") {
output += ` ([trunk failure](${relatedJobUrl}))`;
} else if (header === "FLAKY") {
output += ` ([similar failure](${relatedJobUrl}))`;
} else {
output += ` ([related job](${relatedJobUrl}))`;
}
}
const relatedIssue = relatedIssues.get(job.id);
// Show all the related issues
if (relatedIssue !== undefined) {
const issueInfo = relatedIssue
.map(
(issue) =>
`[#${issue.number}](${issue.html_url.replace(
"https://github.com",
HUD_URL
)})`
)
.join(", ");
if (issueInfo) {
output += ` (${issueInfo})`;
}
}
const info = relatedInfo.get(job.id);
// Show all the related information
if (info !== undefined) {
output += ` (${info})`;
}
output += "\n";
if (job.failure_captures && job.failure_captures.length > 0) {
output += ` \`${job.failure_captures[0]}\`\n`;
}
}
output += "</p></details>";
return output;
}
function pluralize(word: string, count: number, pluralForm?: string): string {
if (count === 1) {
return word;
}
if (pluralForm) {
return pluralForm;
}
return `${word}s`;
}
export function constructResultsComment(
pending: number,
failedJobs: RecentWorkflowsData[],
flakyJobs: RecentWorkflowsData[],
brokenTrunkJobs: RecentWorkflowsData[],
unstableJobs: RecentWorkflowsData[],
relatedJobs: Map<number, RecentWorkflowsData>,
relatedIssues: Map<number, IssueData[]>,
relatedInfo: Map<number, string>,
sha: string,
merge_base: string,
merge_base_date: string,
hudBaseUrl: string,
owner: string,
repo: string,
prNumber: number
): string {
let output = `\n`;
const unrelatedFailureCount =
flakyJobs.length + brokenTrunkJobs.length + unstableJobs.length;
const newFailedJobs: RecentWorkflowsData[] = failedJobs.filter(
(job) =>
job.conclusion !== "cancelled" &&
!job.failure_captures.includes(CANCELLED_STEP_ERROR)
);
const cancelledJobs: RecentWorkflowsData[] = failedJobs.filter(
(job) =>
job.conclusion === "cancelled" ||
job.failure_captures.includes(CANCELLED_STEP_ERROR)
);
const failing =
failedJobs.length +
flakyJobs.length +
brokenTrunkJobs.length +
unstableJobs.length;
const headerPrefix = `## `;
const pendingIcon = `:hourglass_flowing_sand:`;
const successIcon = `:white_check_mark:`;
const failuresIcon = `:x:`;
const noneFailing = `No Failures`;
const significantFailures = `${newFailedJobs.length} New ${pluralize(
"Failure",
newFailedJobs.length
)}`;
const cancelledFailures = `${cancelledJobs.length} Cancelled ${pluralize(
"Job",
cancelledJobs.length
)}`;
const unrelatedFailures = `${unrelatedFailureCount} Unrelated ${pluralize(
"Failure",
unrelatedFailureCount
)}`;
const pendingJobs = `${pending} Pending`;
const hasAnyFailing = failing > 0;
const hasSignificantFailures = newFailedJobs.length > 0;
const hasCancelledFailures = cancelledJobs.length > 0;
const hasPending = pending > 0;
const hasUnrelatedFailures =
flakyJobs.length + brokenTrunkJobs.length + unstableJobs.length;
let icon = "";
if (hasSignificantFailures || hasCancelledFailures) {
icon = failuresIcon;
} else if (hasPending) {
icon = pendingIcon;
} else {
icon = successIcon;
}
let title_messages = [];
if (hasSignificantFailures) {
title_messages.push(significantFailures);
}
if (hasCancelledFailures) {
title_messages.push(cancelledFailures);
}
if (!hasAnyFailing) {
title_messages.push(noneFailing);
}
if (hasPending) {
title_messages.push(pendingJobs);
}
if (hasUnrelatedFailures) {
let unrelatedFailuresMsg = unrelatedFailures;
if (title_messages.length == 0) {
// If there are no other messages, reassure the user that things are looking good
unrelatedFailuresMsg =
"You can merge normally! (" + unrelatedFailures + ")";
}
title_messages.push(unrelatedFailuresMsg);
}
let title = headerPrefix + icon + " " + title_messages.join(", ");
output += title;
output += `\nAs of commit ${sha} with merge base ${merge_base}`;
const timestamp = dayjs.utc(merge_base_date).unix();
if (!isNaN(timestamp)) {
output += ` (<sub><sub><img alt="image" width=70 src="https://img.shields.io/date/${timestamp}?label=&color=FFFFFF&style=flat-square"></sub></sub>)`;
}
output += ":";
if (!hasAnyFailing) {
output += `\n:green_heart: Looks good so far! There are no failures yet. :green_heart:`;
}
if (newFailedJobs.length) {
output += constructResultsJobsSections(
hudBaseUrl,
owner,
repo,
prNumber,
`NEW ${pluralize("FAILURE", newFailedJobs.length).toLocaleUpperCase()}`,
`The following ${
newFailedJobs.length > 1 ? "jobs have" : "job has"
} failed`,
newFailedJobs,
"",
false,
relatedJobs,
relatedIssues,
relatedInfo
);
}
if (cancelledJobs.length) {
output += constructResultsJobsSections(
hudBaseUrl,
owner,
repo,
prNumber,
`CANCELLED ${pluralize("JOB", cancelledJobs.length).toLocaleUpperCase()}`,
`The following ${
cancelledJobs.length > 1 ? "jobs were" : "job was"
} cancelled. Please retry`,
cancelledJobs,
"",
true,
relatedJobs,
relatedIssues,
relatedInfo
);
}
output += constructResultsJobsSections(
hudBaseUrl,
owner,
repo,
prNumber,
"FLAKY",
`The following ${pluralize("job", flakyJobs.length)} failed but ${pluralize(
"was",
flakyJobs.length,
"were"
)} likely due to flakiness present on trunk`,
flakyJobs,
"",
true,
relatedJobs,
relatedIssues,
relatedInfo
);
output += constructResultsJobsSections(
hudBaseUrl,
owner,
repo,
prNumber,
"BROKEN TRUNK",
`The following ${pluralize(
"job",
brokenTrunkJobs.length
)} failed but ${pluralize(
"was",
flakyJobs.length,
"were"
)} present on the merge base`,
brokenTrunkJobs,
"Rebase onto the `viable/strict` branch to avoid these failures",
true,
relatedJobs,
relatedIssues,
relatedInfo
);
output += constructResultsJobsSections(
hudBaseUrl,
owner,
repo,
prNumber,
"UNSTABLE",
`The following ${pluralize(
"job",
unstableJobs.length
)} failed but ${pluralize(
"was",
unstableJobs.length,
"were"
)} likely due to flakiness present on trunk and has been marked as unstable`,
unstableJobs,
"",
true,
relatedJobs,
relatedIssues,
relatedInfo
);
return output;
}
function isFlaky(
job: RecentWorkflowsData,
flakyRules: FlakyRule[]
): FlakyRule | undefined {
return flakyRules.find((flakyRule) => {
const jobNameRegex = new RegExp(flakyRule.name);
return (
job.name.match(jobNameRegex) &&
flakyRule.captures.every((capture: string) => {
const captureRegex = new RegExp(capture);
const matchFailureCaptures: boolean = job.failure_captures.some(
(failureCapture) => failureCapture.match(captureRegex)
);
const matchFailureLine: boolean =
job.failure_lines.length > 0 &&
job.failure_lines[0].match(captureRegex) != null;
// Accept both failure captures array and failure line string to make sure
// that nothing is missing
return matchFailureCaptures || matchFailureLine;
})
);
});
}
function getTrunkFailure(
job: RecentWorkflowsData,
baseJobs: Map<string, RecentWorkflowsData[]>
): RecentWorkflowsData | undefined {
const jobNameNoSuffix = removeJobNameSuffix(job.name);
// This job doesn't exist in the base commit, thus not a broken trunk failure
if (!baseJobs.has(jobNameNoSuffix)) {
return;
}
return baseJobs
.get(jobNameNoSuffix)!
.find((baseJob) => isSameFailure(baseJob, job));
}
export async function getWorkflowJobsStatuses(
prInfo: PRandJobs,
flakyRules: FlakyRule[],
baseJobs: Map<string, RecentWorkflowsData[]>,
labels: string[] = [],
unstableIssues: IssueData[] = [],
disabledTestIssues: IssueData[] = [],
mergeCommits: string[] = []
): Promise<{
pending: number;
failedJobs: RecentWorkflowsData[];
flakyJobs: RecentWorkflowsData[];
brokenTrunkJobs: RecentWorkflowsData[];
unstableJobs: RecentWorkflowsData[];
relatedJobs: Map<number, RecentWorkflowsData>;
relatedIssues: Map<number, IssueData[]>;
relatedInfo: Map<number, string>;
}> {
let pending = 0;
const preprocessFailedJobs: RecentWorkflowsData[] = [];
const flakyJobs: RecentWorkflowsData[] = [];
const brokenTrunkJobs: RecentWorkflowsData[] = [];
const unstableJobs: RecentWorkflowsData[] = [];
const failedJobs: RecentWorkflowsData[] = [];
// This map holds the list of the base failures for broken trunk jobs or the similar
// failures for flaky jobs
const relatedJobs: Map<number, RecentWorkflowsData> = new Map();
// Maps job id -> associated unstable issue that disables a job
const relatedIssues: Map<number, IssueData[]> = new Map();
// Any additional information about the job classification can be kept here
const relatedInfo: Map<number, string> = new Map();
for (const job of prInfo.jobs) {
if (job.conclusion === "" && isTime0(job.completed_at)) {
pending++;
} else if (job.conclusion === "failure" || job.conclusion === "cancelled") {
const suppressedLabels = await getSuppressedLabels(job, labels);
if (prInfo.repo === "pytorch" && suppressedLabels.length !== 0) {
flakyJobs.push(job);
relatedInfo.set(job.id, `suppressed by ${suppressedLabels.join(", ")}`);
continue;
}
// TODO: remove the `as any` cast when CH migration is complete
if (isUnstableJob(job as any, unstableIssues)) {
unstableJobs.push(job);
relatedIssues.set(
job.id,
getOpenUnstableIssues(job.name, unstableIssues)
);
continue;
}
if (isExcludedFromBrokenTrunk(job)) {
failedJobs.push(job);
continue;
}
const trunkFailure = getTrunkFailure(job, baseJobs);
if (trunkFailure !== undefined) {
brokenTrunkJobs.push(job);
relatedJobs.set(job.id, trunkFailure);
continue;
}
if (isExcludedFromFlakiness(job)) {
failedJobs.push(job);
continue;
}
const flakyRule = isFlaky(job, flakyRules);
if (flakyRule !== undefined) {
flakyJobs.push(job);
relatedInfo.set(
job.id,
`matched **${flakyRule.name}** rule in [flaky-rules.json](https://github.com/pytorch/test-infra/blob/generated-stats/stats/flaky-rules.json)`
);
continue;
}
if (isInfraFlakyJob(job)) {
flakyJobs.push(job);
relatedInfo.set(job.id, `detected as infra flaky with no runner`);
continue;
}
if (await isLogClassifierFailed(job)) {
flakyJobs.push(job);
relatedInfo.set(
job.id,
`detected as infra flaky with no log or failing log classifier`
);
await backfillMissingLog(prInfo.owner, prInfo.repo, job);
continue;
}
const matchDisabledTestIssues = getDisabledTestIssues(
job,
disabledTestIssues
);
if (
matchDisabledTestIssues.length !== 0 &&
isRecentlyCloseDisabledTest(
matchDisabledTestIssues,
prInfo.merge_base_date
)
) {
const disabledTestIssuesMsg = matchDisabledTestIssues
.map(
(issue) =>
`[#${issue.number}](${issue.html_url.replace(
"https://github.com",
HUD_URL
)})`
)
.join(", ");
relatedInfo.set(
job.id,
`disabled by ${disabledTestIssuesMsg} but the issue was closed recently and a rebase is needed to make it pass`
);
if (!isDisabledTestMentionedInPR(matchDisabledTestIssues, prInfo)) {
flakyJobs.push(job);
continue;
}
}
if (
matchDisabledTestIssues.length !== 0 &&
isDisabledTest(matchDisabledTestIssues)
) {
if (isDisabledTestMentionedInPR(matchDisabledTestIssues, prInfo)) {
// If the test is disabled and it's mentioned in the PR, its failure
// would be legit, for example, the PR is trying to fix the flaky test
relatedIssues.set(job.id, matchDisabledTestIssues);
} else {
// If the test is disabled and it's NOT mentioned anywhere in the PR,
// its failure is consider flaky
flakyJobs.push(job);
const disabledTestIssuesMsg = matchDisabledTestIssues
.map(
(issue) =>
`[#${issue.number}](${issue.html_url.replace(
"https://github.com",
HUD_URL
)})`
)
.join(", ");
relatedInfo.set(job.id, `disabled by ${disabledTestIssuesMsg}`);
continue;
}
}
if (prInfo.repo === "pytorch") {
// NB: Searching for similar failures depends on the accuracy of the log
// classifier, so we only enable this in PyTorch core atm where the log
// classifier works decently well
const similarFailure = await hasSimilarFailures(
job,
prInfo.merge_base_date,
mergeCommits
);
if (similarFailure !== undefined) {
flakyJobs.push(job);
relatedJobs.set(job.id, similarFailure);