@@ -219,13 +219,16 @@ jobs:
219
219
run : go run scripts/datadog-cireport/main.go gotests.xml
220
220
221
221
- uses : codecov/codecov-action@v3
222
+ # This action has a tendency to error out unexpectedly, it has
223
+ # the `fail_ci_if_error` option that defaults to `false`, but
224
+ # that is no guarantee, see:
225
+ # https://github.com/codecov/codecov-action/issues/788
226
+ continue-on-error : true
222
227
if : github.actor != 'dependabot[bot]' && !github.event.pull_request.head.repo.fork
223
228
with :
224
229
token : ${{ secrets.CODECOV_TOKEN }}
225
230
files : ./gotests.coverage
226
231
flags : unittest-go-${{ matrix.os }}
227
- # this flakes and sometimes fails the build
228
- fail_ci_if_error : false
229
232
230
233
test-go-postgres :
231
234
name : " test/go/postgres"
@@ -281,13 +284,16 @@ jobs:
281
284
run : go run scripts/datadog-cireport/main.go gotests.xml
282
285
283
286
- uses : codecov/codecov-action@v3
287
+ # This action has a tendency to error out unexpectedly, it has
288
+ # the `fail_ci_if_error` option that defaults to `false`, but
289
+ # that is no guarantee, see:
290
+ # https://github.com/codecov/codecov-action/issues/788
291
+ continue-on-error : true
284
292
if : github.actor != 'dependabot[bot]' && !github.event.pull_request.head.repo.fork
285
293
with :
286
294
token : ${{ secrets.CODECOV_TOKEN }}
287
295
files : ./gotests.coverage
288
296
flags : unittest-go-postgres-${{ matrix.os }}
289
- # this flakes and sometimes fails the build
290
- fail_ci_if_error : false
291
297
292
298
deploy :
293
299
name : " deploy"
@@ -431,13 +437,16 @@ jobs:
431
437
working-directory : site
432
438
433
439
- uses : codecov/codecov-action@v3
440
+ # This action has a tendency to error out unexpectedly, it has
441
+ # the `fail_ci_if_error` option that defaults to `false`, but
442
+ # that is no guarantee, see:
443
+ # https://github.com/codecov/codecov-action/issues/788
444
+ continue-on-error : true
434
445
if : github.actor != 'dependabot[bot]' && !github.event.pull_request.head.repo.fork
435
446
with :
436
447
token : ${{ secrets.CODECOV_TOKEN }}
437
448
files : ./site/coverage/lcov.info
438
449
flags : unittest-js
439
- # this flakes and sometimes fails the build
440
- fail_ci_if_error : false
441
450
442
451
- name : Upload DataDog Trace
443
452
if : always() && github.actor != 'dependabot[bot]' && !github.event.pull_request.head.repo.fork
0 commit comments