Skip to content

Commit fe1dbca

Browse files
ystefinkodiachenko-mischa
authored andcommitted
Fix FV pipeline failure due to file not found
Add check for file exist. It will exist only if NV pipeline started. FV should skipp that step. Relates-To: OLPEDGE-746 Signed-off-by: Yaroslav Stefinko <[email protected]>
1 parent 3043009 commit fe1dbca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ translate_report:
102102
# - python -m junit2htmlreport --merge olp-merged-report.xml reports/*.xml
103103
# - python -m junit2htmlreport olp-merged-report.xml
104104
- python -m junit2htmlreport --report-matrix reports/index.html reports/*.xml
105-
- cat heaptrack_report.html >> reports/index.html
105+
- if [ "$NIGHTLY" == "1" ]; then cat heaptrack_report.html >> reports/index.html; fi
106106
- mkdir -p .public
107107
- cp reports/*.html .public/
108108
artifacts:

0 commit comments

Comments
 (0)