File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 77 profiles . auxiliaries . builder . enable = false ;
88
99 nix = let
10- systemFeatures = [ "big-parallel" "benchmark" ] ;
10+ supportedFeatures = [ "big-parallel" "benchmark" ] ;
1111 in {
1212 buildMachines = let
1313 mkDarwinBuilder = name : mandatoryFeatures : {
1818 sshKey = "/etc/nix/darwin-builder-key" ;
1919 sshUser = "builder" ;
2020 systems = [ "x86_64-darwin" ] ;
21- supportedFeatures = systemFeatures ;
21+ inherit supportedFeatures ;
2222 } ;
2323 in [
2424 ( mkDarwinBuilder "mm1-builder" [ ] )
2929
3030 distributedBuilds = true ;
3131
32- inherit systemFeatures ;
32+ systemFeatures =
33+ supportedFeatures
34+ ++ [
35+ "kvm" # even if KVM is not supported; better to run slow than to fail
36+ ] ;
3337
3438 trustedUsers = [ "root" "builder" ] ;
3539
You can’t perform that action at this time.
0 commit comments