Build
Remote execution
Quick answer
Remote execution distributes individual build actions across a fleet of workers rather than running them all on one machine.
Remote execution distributes individual build actions across a fleet of workers rather than running them all on one machine.
Why it matters
It is the logical endpoint of Bazel-style builds: a laptop can drive a thousand-core build. It requires hermetic actions, which is exactly why Bazel insists on them.
Your next build could be twice as fast, at half the price
Start free. Migrating away is the same one line, and we publish that diff too.
Related
Cross-compilationCross-compilation is building a binary on one architecture that is intended to run on a different one.Incremental buildAn incremental build recompiles only the parts of a project affected by a change, reusing previously built outputs for everything else.MonorepoA monorepo is a single repository containing multiple projects or packages that are versioned and built together.QEMU emulationQEMU emulation runs binaries compiled for one CPU architecture on a machine with a different one, by interpreting instructions in software.