From 0b124e2c7eb2c3df043a9069f09c7e7c785eb88e Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Wed, 9 Nov 2016 11:39:50 -0500 Subject: [PATCH] circle: Ensure correct 0.1.0 tag is used Since we didn't get the 0.1.0 release "right" with the first tag, it was deleted and re-created. As discussed in [1], this is a problem with CircleCI because the "Rebuild without cache" does not clear the source cache. This commit implement the suggested workaround. [1] https://discuss.circleci.com/t/clearing-the-source-cache/2771 --- circle.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/circle.yml b/circle.yml index ac93e7fab..4179b29d3 100644 --- a/circle.yml +++ b/circle.yml @@ -13,6 +13,12 @@ dependencies: - ci_addons docker load-pull-save dockcross/manylinux-x64 - ci_addons docker load-pull-save dockcross/manylinux-x86 +checkout: + post: + # See https://discuss.circleci.com/t/clearing-the-source-cache/2771 + - git tag -d 0.1.0 || true + - git fetch origin tag 0.1.0 || true + test: override: - circleci-matrix: