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:
239239 if : github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1'
240240
241241 - 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
242245 run : |
243246 if [ -f build/metrics.json ]; then
244247 METRICS=build/metrics.json
@@ -253,6 +256,9 @@ jobs:
253256 ${METRICS} ${GITHUB_STEP_SUMMARY}
254257
255258 - 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
256262 if : needs.calculate_matrix.outputs.run_type != 'pr'
257263 env :
258264 DATADOG_API_KEY : ${{ secrets.DATADOG_API_KEY }}
You can’t perform that action at this time.
0 commit comments