|
|
|
|
|
by asdkhadsj
2177 days ago
|
|
> On the other hand I tried introducing Rust for a small part of a larger ecosystem and the cold compile times were so bad we rewrote the functionality in C. It shaved minutes off our CI build times, which costs actual money. Yea, we have this issue (as a shop now using Rust for all of our backend). I have a couple of hacks in place to cache the majority of the build thankfully, only needing to compile source code unless something changes. When our build cache works our builds take ~60s. When it doesn't, ~15m. |
|
What did you wind up doing to cache your builds? I've tried a few different hacks but none have stuck.