From da1e93169337951907e812cdca5cf5fa1a8b38c3 Mon Sep 17 00:00:00 2001 From: Flavio Crisciani Date: Thu, 12 Oct 2017 09:45:34 -0700 Subject: [PATCH] Explicitly pass the sha to codecov In case of merge commit, the sha passed to the codecov tool is the one of the merged commit intstead of the merge commit this creates error because the base commit is always different. Passing it explicitely should fix it Signed-off-by: Flavio Crisciani --- libnetwork/circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnetwork/circle.yml b/libnetwork/circle.yml index 9ff2fc7bc9..91b2abce4d 100644 --- a/libnetwork/circle.yml +++ b/libnetwork/circle.yml @@ -13,4 +13,4 @@ test: override: - make circle-ci post: - - bash <(curl -s https://codecov.io/bash) + - bash <(curl -s https://codecov.io/bash) -C "$(git log --format="%H" -n 1)"