File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
incubating/test-reporting Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 77
77
"type": "string",
78
78
"description": "Directory with test report files"
79
79
},
80
+ "report_path": {
81
+ "type": "string",
82
+ "description": "Path where the report files are saved in the bucket"
83
+ },
80
84
"report_index_file": {
81
85
"type": "string",
82
86
"description": "Root file that will be open in report"
88
92
"max_upload_size_mb": {
89
93
"type": "integer",
90
94
"description": "Max upload size in MB. The default is 1000MB"
95
+ },
96
+ "cf_api_retries": {
97
+ "type": "integer",
98
+ "description": "The number of times to retry if a Codefresh API call fails. The default is 0"
91
99
}
92
100
}
93
101
}
@@ -108,6 +116,9 @@ spec:
108
116
[[ if .Arguments.report_dir ]]
109
117
- REPORT_DIR=[[ .Arguments.report_dir ]]
110
118
[[ end ]]
119
+ [[ if .Arguments.report_path ]]
120
+ - REPORT_PATH=[[ .Arguments.report_path ]]
121
+ [[ end ]]
111
122
[[ if .Arguments.report_index_file ]]
112
123
- REPORT_INDEX_FILE=[[ .Arguments.report_index_file ]]
113
124
[[ end ]]
@@ -119,6 +130,9 @@ spec:
119
130
[[ end ]]
120
131
[[ if .Arguments.max_upload_size_mb ]]
121
132
- MAX_UPLOAD_SIZE_MB=[[ .Arguments.max_upload_size_mb ]]
133
+ [[ end ]]
134
+ [[ if .Arguments.cf_api_retries ]]
135
+ - CF_API_RETRIES=[[ .Arguments.cf_api_retries ]]
122
136
[[ end ]]
123
137
- CF_STEP_NAME=first
124
138
- CF_VOLUME_PATH=/meta
You can’t perform that action at this time.
0 commit comments