mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 05:23:35 +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:
|
save_cache:
|
||||||
paths:
|
paths:
|
||||||
- /srv/zulip-venv-cache
|
- /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
|
# TODO: in Travis we also cache ~/zulip-emoji-cache, ~/node, ~/misc
|
||||||
|
|
||||||
- &run_backend_tests
|
- &run_backend_tests
|
||||||
|
|||||||
Reference in New Issue
Block a user