Skip to content

Commit 62c2bfa

Browse files
authored
Add launch id to info about bench run (#14755)
1 parent 0339e80 commit 62c2bfa

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ydb/tests/olap/lib/results_processor.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,10 @@ def _get_duration(dur: float | None):
116116
if report_url is not None:
117117
info['report_url'] = report_url
118118

119+
ci_launch_id = os.getenv('CI_LAUNCH_ID', None)
120+
if ci_launch_id:
121+
info['ci_launch_id'] = ci_launch_id
122+
119123
data = {
120124
'Db': cls.get_cluster_id(),
121125
'Kind': kind,

0 commit comments

Comments
 (0)