mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
ci: Fixed saving cache bug in Circle CI jobs.
While saving cache we used thumbor.txt in as key but while restoring cache we used thumbor-dev.txt as the key so we could never restore zulip-venv-cache in ci builds.
This commit is contained in:
@@ -56,7 +56,7 @@ aliases:
|
||||
save_cache:
|
||||
paths:
|
||||
- /srv/zulip-venv-cache
|
||||
key: v1-venv-base.{{ .Environment.CIRCLE_JOB }}-{{ checksum "requirements/thumbor.txt" }}-{{ checksum "requirements/dev.txt" }}
|
||||
key: v1-venv-base.{{ .Environment.CIRCLE_JOB }}-{{ checksum "requirements/thumbor-dev.txt" }}-{{ checksum "requirements/dev.txt" }}
|
||||
# TODO: in Travis we also cache ~/zulip-emoji-cache, ~/node, ~/misc
|
||||
|
||||
- &run_backend_tests
|
||||
|
||||
Reference in New Issue
Block a user