Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion 0352-distributed-builds.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,11 @@ cmake-re --host --distributed --build ./build -j1000
> ```bash
> export RBE_remote_disabled="true"
> ```
> 💡 Don't forget to ajdust the number of jobs `-j` used for the build, to avoid overloading your local machine, when building with `RBE_remote_disabled`.
> 💡 Don't forget to ajdust the number of jobs `-j` used for the build, to avoid overloading your local machine, when building with `RBE_remote_disabled`.

> ## 🧹 How to force a clean cache for a `--distributed --build`?
> Sometimes it may be necessary to ensure a build doesn't reuse any previously cached remote actions (_e.g._ investigating a flaky build or simply starting fresh). This can be done by passing a `cache-silo-key` via the `RBE_platform` environment variable:
>
> ```bash
> export RBE_platform="cache-silo-key=<my_unique_silo_key>"
> ```