File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -239,6 +239,9 @@ jobs:
239
239
if : github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1'
240
240
241
241
- name : postprocess metrics into the summary
242
+ # This step is not critical, and if some I/O problem happens, we don't want
243
+ # to cancel the build.
244
+ continue-on-error : true
242
245
run : |
243
246
if [ -f build/metrics.json ]; then
244
247
METRICS=build/metrics.json
@@ -253,6 +256,9 @@ jobs:
253
256
${METRICS} ${GITHUB_STEP_SUMMARY}
254
257
255
258
- name : upload job metrics to DataDog
259
+ # This step is not critical, and if some I/O problem happens, we don't want
260
+ # to cancel the build.
261
+ continue-on-error : true
256
262
if : needs.calculate_matrix.outputs.run_type != 'pr'
257
263
env :
258
264
DATADOG_API_KEY : ${{ secrets.DATADOG_API_KEY }}
You can’t perform that action at this time.
0 commit comments