From d11913705ba2c6ff4bb58273158a58fbbbe2048e Mon Sep 17 00:00:00 2001 From: nguyed99 <nguyed99@zedat.fu-berlin.de> Date: Fri, 19 Jan 2024 22:00:11 +0100 Subject: [PATCH] Update pipeline --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c51706d..8575f19 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,19 +1,19 @@ image: python:3.11-bullseye variables: - PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" + POETRY_CACHE_DIR: "$CI_PROJECT_DIR/.cache/poetry" cache: paths: - - .cache/pip + - .cache/poetry before_script: - pip install poetry - poetry --version - cd build/ - - poetry install -vv - - cd .. + - poetry install --no-root + - source $(poetry env info --path)/bin/activate format: script: -- GitLab