From 9fbaa6db687746c0c223caf01bf745f7eac91abb Mon Sep 17 00:00:00 2001 From: Pierre Smeyers <pierre.smeyers@gmail.com> Date: Sun, 30 Jan 2022 17:48:20 +0100 Subject: [PATCH] fix(Poetry): Poetry cache in GitLab CI cache --- templates/gitlab-ci-python.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/templates/gitlab-ci-python.yml b/templates/gitlab-ci-python.yml index 9b9bda3..14c07da 100644 --- a/templates/gitlab-ci-python.yml +++ b/templates/gitlab-ci-python.yml @@ -17,6 +17,10 @@ variables: # Change pip's cache directory to be inside the project directory since we can # only cache local items. PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" + # Poetry support: force virtualenv not in project dir & use local cache dir + POETRY_CACHE_DIR: "$CI_PROJECT_DIR/.cache/poetry" + POETRY_VIRTUALENVS_IN_PROJECT: "false" + PYTHON_IMAGE: python:3 # Default Python project root directory PYTHON_PROJECT_DIR: . @@ -359,6 +363,7 @@ variables: key: "$CI_COMMIT_REF_SLUG-python" paths: - ${PIP_CACHE_DIR} + - ${POETRY_CACHE_DIR} before_script: - *python-scripts - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}" -- GitLab