hydra: bayfront: Make some guix-build-coordinator hook tweaks.

* hydra/bayfront.scm (%guix-build-coordinator-configuration): Support
more parallel build-success hooks and make the build-missing-inputs
hook do nothing, as this should be unused.
This commit is contained in:
Christopher Baines 2023-11-02 08:33:32 +00:00
parent be2b815e9e
commit 50ec77a07e
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 5 additions and 2 deletions

View File

@ -862,9 +862,12 @@ proxy_set_header Via $via;"
'((build-submitted . 6)
(build-canceled . 6)
(build-started . 6)
(build-success . 4)))
(build-success . 24)))
(hooks
`((build-submitted
`((build-missing-inputs
;; Builds shouldn't be missing inputs, so disable this hook
. ,#~(const #t))
(build-submitted
. ,#~(lambda args
#$(send-guix-data-service-event
'build-submitted-send-event-to-guix-data-service-hook)))