Drop parallelism in compile and flash
Compile All / compile (push) Has been cancelled

Since esphome lets platformio fetch packages and that is not parallel
safe, we have to pace it a bit.
This commit is contained in:
2026-07-12 15:36:10 +00:00
parent c8ebb8df7d
commit 8285170f4d
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -16,8 +16,8 @@ $ cp -i templates/secrets.yaml{.sample,}
# Edit both secrets.yaml files.
# Compile all devices in parallel (up to 4 jobs)
$ nix develop --command make compile-all -j4
# Compile all devices
$ nix develop --command make compile-all
# Or compile a single device
$ nix develop --command make compile-bathroomheater
@@ -28,7 +28,7 @@ $ nix develop --command make compile-bathroomheater
To flash all devices (automatically prioritizes OTA and skips prompts):
```bash
$ nix develop --command make flash-all -j4
$ nix develop --command make flash-all
```
To flash a single device: