From 4e09dba0689136798103908737fa6c39b433021f Mon Sep 17 00:00:00 2001 From: Daniel Nephin Date: Tue, 15 Aug 2017 13:17:20 -0400 Subject: [PATCH] Ignore codecov upload failures in CI. Signed-off-by: Daniel Nephin --- circle.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index 2a9c196750..ecf597fa36 100644 --- a/circle.yml +++ b/circle.yml @@ -71,7 +71,8 @@ jobs: test-$CIRCLE_BUILD_NUM:/go/src/github.com/docker/cli/coverage.txt \ coverage.txt apk add -U bash curl - curl -s https://codecov.io/bash | bash + curl -s https://codecov.io/bash | bash || \ + echo 'Codecov failed to upload' validate: working_directory: /work