mirror of
https://github.com/NixOS/nix
synced 2025-06-25 10:41:16 +02:00
13 lines
381 B
Bash
13 lines
381 B
Bash
source common.sh
|
|
|
|
clearStore
|
|
clearCacheCache
|
|
|
|
# Fails without remote builders
|
|
(! nix-build --store "file://$cacheDir" dependencies.nix)
|
|
|
|
# Succeeds with default store as build remote.
|
|
nix-build --store "file://$cacheDir" --builders 'auto - - 1 1' -j0 dependencies.nix
|
|
|
|
# Succeeds without any build capability because no-op
|
|
nix-build --store "file://$cacheDir" -j0 dependencies.nix
|