Skip to content

Commit 0b124e2

Browse files
committed
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
1 parent 889e3d3 commit 0b124e2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

circle.yml

+6
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ dependencies:
1313
- ci_addons docker load-pull-save dockcross/manylinux-x64
1414
- ci_addons docker load-pull-save dockcross/manylinux-x86
1515

16+
checkout:
17+
post:
18+
# See https://discuss.circleci.com/t/clearing-the-source-cache/2771
19+
- git tag -d 0.1.0 || true
20+
- git fetch origin tag 0.1.0 || true
21+
1622
test:
1723
override:
1824
- circleci-matrix:

0 commit comments

Comments
 (0)