diff options
-rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d7048f06..21a3fd8a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,10 +1,12 @@ -cache: - key: "${CI_COMMIT_REF_SLUG}" - paths: - - python/.venv/ - - rust/target/ - - rust/.cargo_cache/ +# Rust caching causing bloat and using too much disk space in public gitlab.com +# CI process +#cache: +# key: "${CI_COMMIT_REF_SLUG}" +# paths: +# - python/.venv/ +# - rust/target/ +# - rust/.cargo_cache/ variables: LC_ALL: "C.UTF-8" |