Slackbot
03/08/2023, 7:24 PMlptr
03/16/2023, 8:30 PMGabriel Feo
03/17/2023, 7:36 PMGabriel Feo
03/17/2023, 7:39 PMcacheIf { !isCI }
as I described, letting local builds re-execute and cache them locally. However, it's presumably what caused our local build time (p95) to increase, due to cache misseslptr
04/03/2023, 7:40 PMcacheIf { !isCI }
seems like an anti-pattern, and can very well cause increased build times due to cache misses. But why do you think they are worth caching locally? The local cache is predominantly useful when switching branches or moving around in the history by some other means (like git bisect
). It’s impact should be far smaller than that of the remote cache. I’d assume that if a task is not worth caching on CI, it is safe to assume that it’s not worth caching locally either?lptr
04/03/2023, 7:41 PMGabriel Feo
04/10/2023, 3:16 PM