Skip to content
This repository was archived by the owner on Oct 9, 2023. It is now read-only.

Commit 8de3a39

Browse files
authored
Fix CI (#98)
## What is the goal of this PR? As it turns out, we still need to use Python 2 in `deploy-github`, just at a very specific stage of it. ## What are the changes implemented in this PR? Before executing the actual deployment to GitHub, we switch back to Python 2 and clean the Bazel sandbox such that PyPI dependencies are refetched
1 parent 3fce459 commit 8de3a39

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.circleci/config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,8 @@ jobs:
136136
pip install certifi
137137
export RELEASE_NOTES_TOKEN=$REPO_GITHUB_TOKEN
138138
bazel run @graknlabs_build_tools//ci:release-notes -- client-python $(cat VERSION) ./RELEASE_TEMPLATE.md
139+
- run: pyenv global 2.7.12 3.5.2
140+
- run: bazel clean --expunge
139141
- run: |
140142
export DEPLOY_GITHUB_TOKEN=$REPO_GITHUB_TOKEN
141143
bazel run --define version=$(cat VERSION) //:deploy-github -- $CIRCLE_SHA1

0 commit comments

Comments
 (0)