diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-09-13 14:38:45 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-09-13 14:38:45 -0700 |
commit | 0b22af5b652787d97ca747304a583c558e301c41 (patch) | |
tree | 5c5fdcf77da9e6e95dcde7667999f806dd475639 | |
parent | 176a96cc3182a64ec8b837704fefb5ffbced8aee (diff) | |
download | fatcat-0b22af5b652787d97ca747304a583c558e301c41.tar.gz fatcat-0b22af5b652787d97ca747304a583c558e301c41.zip |
disable dependency caching (for now)
-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" |