diff options
| author | 2018-07-29 09:40:50 +0000 | |
|---|---|---|
| committer | 2018-07-29 09:40:50 +0000 | |
| commit | d4d6be7104e6eab72c1c0d73ec7e8770bc7cdeb1 (patch) | |
| tree | d257b87d8b9d15fbb66ac4c856cd6882842aa0b8 | |
| parent | Use splats for infraction reasons (diff) | |
Pip cache
| -rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 88ab5d927..3edfb2bf8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,13 @@ image: pythondiscord/bot-ci:latest +variables: + PIPENV_CACHE_DIR: "$CI_PROJECT_DIR/pipenv-cache" + +cache: + paths: + - "$CI_PROJECT_DIR/pipenv-cache" + - "$CI_PROJECT_DIR/.venv" + stages: - test - build |