-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Segregate docker-worker caches by docker image
Sharing caches across different docker images runs the risk of different versions of tools in different tasks trying to access the same storage, and breaking in exciting ways (e.g. mercurial clones are not downgrade-safe, so sharing a cache across all tasks with possibly different hg versions doesn't work reliably). Splitting them based on the docker image used by the task means less data is shared than would be possible, but seems safer given we can't know what hg version is on each image.
- Loading branch information
Showing
3 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters