From 9a1d56d6cbd868a7c1a94b78045d2aa3401f115b Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Mon, 20 Jun 2022 09:24:54 -0700 Subject: [PATCH] Don't cache poetry deps, since this is causing issues --- .circleci/config.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ac0cadd0..57e54f4c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -109,17 +109,17 @@ jobs: name: Install poetry command: C:\Python39\python -m pip install poetry - - restore_cache: - key: build-win64-desktop-poetry-deps-{{ checksum "~/project/desktop/poetry.lock" }}-{{ .Environment.CACHE_VERSION }} + # - restore_cache: + # key: build-win64-desktop-poetry-deps-{{ checksum "~/project/desktop/poetry.lock" }}-{{ .Environment.CACHE_VERSION }} - run: name: Install poetry dependencies command: | cd C:\Users\circleci\project\desktop C:\Python39\scripts\poetry install - - save_cache: - key: build-win64-desktop-poetry-deps-{{ checksum "~/project/desktop/poetry.lock" }}-{{ .Environment.CACHE_VERSION }} - paths: - - C:\Users\circleci\AppData\Local\pypoetry\Cache\virtualenvs + # - save_cache: + # key: build-win64-desktop-poetry-deps-{{ checksum "~/project/desktop/poetry.lock" }}-{{ .Environment.CACHE_VERSION }} + # paths: + # - C:\Users\circleci\AppData\Local\pypoetry\Cache\virtualenvs - restore_cache: key: get-tor-win64-{{ checksum "desktop/scripts/get-tor.py" }}-{{ .Environment.CACHE_VERSION }} @@ -224,17 +224,17 @@ jobs: name: Install poetry command: C:\Python39\python -m pip install poetry - - restore_cache: - key: build-win32-desktop-poetry-deps-{{ checksum "~/project/desktop/poetry.lock" }}-{{ .Environment.CACHE_VERSION }} + # - restore_cache: + # key: build-win32-desktop-poetry-deps-{{ checksum "~/project/desktop/poetry.lock" }}-{{ .Environment.CACHE_VERSION }} - run: name: Install poetry dependencies command: | cd ~\project\desktop C:\Python39\Scripts\poetry install - - save_cache: - key: build-win32-desktop-poetry-deps-{{ checksum "~/project/desktop/poetry.lock" }}-{{ .Environment.CACHE_VERSION }} - paths: - - C:\Users\circleci\AppData\Local\pypoetry\Cache\virtualenvs + # - save_cache: + # key: build-win32-desktop-poetry-deps-{{ checksum "~/project/desktop/poetry.lock" }}-{{ .Environment.CACHE_VERSION }} + # paths: + # - C:\Users\circleci\AppData\Local\pypoetry\Cache\virtualenvs - restore_cache: key: get-tor-win32-{{ checksum "desktop/scripts/get-tor.py" }}-{{ .Environment.CACHE_VERSION }}