2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/maintenance.git synced 2023-12-14 03:33:04 +01:00

hydra: sysadmin: Collect more garbage and more often.

* hydra/modules/sysadmin/build-machines.scm (berlin-build-machine-os):
Collect garbage every 12 hours; ensure that we have 60G free.
This commit is contained in:
Ricardo Wurmus 2019-01-28 22:27:19 +01:00
parent d09ee1c571
commit 20c024f7f9
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -79,9 +79,9 @@ berlin.guixsd.org with integer ID, with the given
AUTHORIZED-GUIX-KEYS."
(define gc-job
;; Run 'guix gc' at 3AM every day.
#~(job '(next-hour '(3))
"guix gc -F 40G"))
;; Run 'guix gc' at 3AM and 3PM every day.
#~(job '(next-hour '(3 15))
"guix gc -F 60G"))
;; TODO: this is ugly.
(define hydra-dir "/root/maintenance/hydra/")