-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Open
Labels
Description
Describe the bug
I set up distributed builds on a machine with this tutorial https://nix.dev/tutorials/nixos/distributed-builds-setup.html. The build itself works. If i try to use nix-build --check
it does not seem to rebuild or give any error message.
Steps To Reproduce
- set up
nix.distributedBuilds = true;
- pick a local store derivation
- run a build similar to this
nix-build /nix/store/j73r5pf6m6x0kc53czn353bk2k2hxcds-mesa-24.2.8.drv --max-jobs 0
- try to run the rebuild
nix-build /nix/store/j73r5pf6m6x0kc53czn353bk2k2hxcds-mesa-24.2.8.drv --max-jobs 0 --check
- compare to a manual remote build
nix-build /nix/store/j73r5pf6m6x0kc53czn353bk2k2hxcds-mesa-24.2.8.drv --check --max-jobs 0 --eval-store auto --store ssh-ng://remote-builder.internal
Expected behavior
A rebuild should be done and logs should appear on the host machine.
Metadata
nix-env (Nix) 2.24.13
Additional context
Checklist
- checked latest Nix manual (source)
- checked open bug issues and pull requests for possible duplicates
Add 👍 to issues you find important.
SuperSandro2000