hydra: cuirass: Increase polling period.

* hydra/modules/sysadmin/services.scm (cuirass-service): Bump ‘interval’
to 10mn.
(cuirass-specs): Change ‘period’ of external projects to 20mn.
This commit is contained in:
Ludovic Courtès 2023-10-08 22:51:06 +02:00
parent 724573a799
commit 5b2c48e713
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 9 additions and 6 deletions

View File

@ -381,7 +381,7 @@ collection instead."
(branch "main"))
%default-guix-channel))
(priority 5)
(period (* 10 60))
(period (* 20 60))
(systems '#$systems))
(specification
@ -399,7 +399,7 @@ collection instead."
"7F73 0343 F2F0 9F3C 77BF 79D3 2E25 EE8B 6180 2BB3"))))
%default-guix-channel))
(priority 5)
(period (* 10 60))
(period (* 20 60))
(systems '#$systems))
(specification
@ -417,7 +417,7 @@ collection instead."
"3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5"))))
%default-guix-channel))
(priority 5)
(period (* 10 60))
(period (* 20 60))
(systems '#$systems))
(specification
@ -435,7 +435,7 @@ collection instead."
"7F73 0343 F2F0 9F3C 77BF 79D3 2E25 EE8B 6180 2BB3"))))
%default-guix-channel))
(priority 5)
(period (* 10 60))
(period (* 20 60))
(systems '#$systems))
(specification
@ -453,7 +453,7 @@ collection instead."
"3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5"))))
%default-guix-channel))
(priority 5)
(period (* 10 60))
(period (* 20 60))
(systems '#$systems))))
@ -668,7 +668,10 @@ to a selected directory.")
(define* (cuirass-service #:key branches systems nar-ttl)
(service cuirass-service-type
(cuirass-configuration
(interval (* 5 60))
;; Choose a high default polling interval because important
;; branches have a push hook that triggers Cuirass:
;; <https://savannah.nongnu.org/support/index.php?110939>.
(interval (* 10 60))
(remote-server (cuirass-remote-server-configuration
(publish? #f)
(trigger-url "http://127.0.0.1")))