user-agent-desktop
user-agent-desktop copied to clipboard
Enable sccache for local build
The sccache
project allows caching output of Rust/C/C++ compilation and is also integrated with the Firefox build system (but I assume disabled by default). It would be nice to set it up for local builds to speed-up compilation. It might require something like the following:
- Find out which mozconfig need to be used to enable
sccache
. - Install
sccache
in Docker containers (we can reuse releases: https://github.com/mozilla/sccache/releases/tag/0.2.13). - Mount
sccache
cache folder into.cache/sccache
locally when invoking./fern.js build
.