mirror of
git://git.savannah.gnu.org/guix/maintenance.git
synced 2023-12-14 03:33:04 +01:00
hydra: berlin: Conditionally set max-cores on build nodes.
* hydra/berlin-nodes.scm (machine): Set MAX-CORES depending on memory size.
This commit is contained in:
parent
b48b10a4c1
commit
4e8aee73ee
1 changed files with 5 additions and 1 deletions
|
@ -136,7 +136,11 @@
|
|||
#:emulated-architectures
|
||||
'("arm" "aarch64")
|
||||
#:childhurd? (childhurd-ip? ip)
|
||||
#:max-jobs 20))
|
||||
#:max-jobs 4
|
||||
;; The big-memory machines have 96
|
||||
;; logical cores, the others 64.
|
||||
#:max-cores (if (> memory 128)
|
||||
24 16)))
|
||||
(environment managed-host-environment-type)
|
||||
(configuration (machine-ssh-configuration
|
||||
(system "x86_64-linux")
|
||||
|
|
Loading…
Reference in a new issue