Just a random question, what is the `CACHE_NAME` e...
# general
r
Just a random question, what is the
CACHE_NAME
env var used for in
.travis.yml.mustache
? Can I override it if I want to create more shards? (sth like
CACHE_NAME=cronjob{{.}}.with_feature
)
w
you don't need to override it, but if you do, shards with different cache names will not collide
(the default is that all shards have the same cache name)
r
Cool, thanks!
h
You’re strongly encouraged to use a unique cache name for each shard to avoid cache weirdness / ensure hermetic builds
r
Unique within that travis build, right?
== unique within
.travis.yml
👍 1