File tree 3 files changed +20
-6
lines changed
3 files changed +20
-6
lines changed Original file line number Diff line number Diff line change 8
8
9
9
### Daily Fail Summary
10
10
11
+ #### Source
12
+
11
13
Workflow:
12
14
https://github.com/project-chip/connectedhomeip/blob/master/.github/workflows/recent_fail_summary.yaml
13
15
14
16
Script:
15
17
https://github.com/project-chip/connectedhomeip/blob/master/scripts/tools/summarize_fail.py
16
18
19
+ Fail Definitions:
20
+ https://github.com/project-chip/connectedhomeip/blob/master/scripts/tools/build_fail_definitions.yaml
21
+
22
+ #### Summary
23
+
17
24
Runs once per day; takes inventory of the previous day's workflow runs and
18
25
parses them for fail statistics. Creates temporarily cached artifacts for easy
19
26
data parsing. Also saves a daily pass percentage list of all workflows at
20
- https://github.com/project-chip/connectedhomeip/blob/daily_pass_percentage/docs/daily_pass_percentage.md
27
+ https://github.com/project-chip/connectedhomeip/blob/daily_pass_percentage/docs/daily_pass_percentage.md .
28
+ Fail definitions can be added to the file defined above to allow fast root cause
29
+ determination of any fail with an error message.
30
+
31
+ #### Improvement Ideas
32
+
33
+ - Keep fail signature list updated to track causes of all common fails
34
+ - Make script artifact more known and accessible so it can be easily shared
35
+ and used by everyone
36
+ - Deliver daily fail summaries in short form through a Slack bot for easy
37
+ access
21
38
22
39
## To Do
23
40
24
41
- Cert image auto build
25
42
26
- ## Improvement Ideas
27
-
28
- - Deliver daily fail summaries in short form through a Slack bot for easy
29
- access
43
+ ## General Improvement Ideas
File renamed without changes.
Original file line number Diff line number Diff line change 10
10
11
11
yesterday = (datetime .datetime .now () - datetime .timedelta (days = 1 )).strftime ('%Y-%m-%d' )
12
12
13
- with open ("scripts/tools/build_fail_defs .yaml" , "r" ) as fail_defs :
13
+ with open ("scripts/tools/build_fail_definitions .yaml" , "r" ) as fail_defs :
14
14
try :
15
15
error_catalog = yaml .safe_load (fail_defs )
16
16
except Exception :
You can’t perform that action at this time.
0 commit comments