hydra: bayfront: Work around "Signals delivery fails constantly".

Affecting both the build coordinator and nar herder:
https://issues.guix.gnu.org/63368

* hydra/bayfront.scm (%guix-build-coordinator-configuration): Add
GC_RETRY_SIGNALS=0 to extra-environment-variables.
<services>[nar-herder]: Likewise.
This commit is contained in:
Christopher Baines 2023-05-18 16:18:07 +01:00
parent cd52cab285
commit 931a28ffca
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 6 additions and 2 deletions

View File

@ -960,7 +960,9 @@ add_header Content-Type text/plain;")))
output-hash ".narinfo")))
(not (file-exists? narinfo))))
(datastore-list-build-outputs
(build-coordinator-datastore build-coordinator) uuid))))))))))
(build-coordinator-datastore build-coordinator) uuid)))))))
(extra-environment-variables
'("GC_RETRY_SIGNALS=0")))))
;;;
@ -1227,7 +1229,9 @@ add_header Content-Type text/plain;")))
(level 19)
(directory-max-size (* 400 GiB)))))
(cached-compression-workers 8)
(cached-compression-nar-source "https://bishan.guix.gnu.org")))
(cached-compression-nar-source "https://bishan.guix.gnu.org")
(extra-environment-variables
'("GC_RETRY_SIGNALS=0"))))
(service guix-build-coordinator-service-type
%guix-build-coordinator-configuration)