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

hydra: services: Add specification priorities.

* hydra/modules/sysadmin/services.scm (cuirass-specs): Define priorities.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
Mathieu Othacehe 2021-01-22 11:52:18 +01:00
parent 7c15c2c436
commit cc49424de8
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -246,7 +246,8 @@
((#:job . "binary-tarball*")
(#:type . "archive")
(#:output . "out")
(#:path . "")))))
(#:path . ""))))
(#:priority . 2))
`((#:name . "guix-modular-master")
;; Keep the load path empty: it uses the available Guix modules
;; to build a trampoline.
@ -257,7 +258,8 @@
(#:proc . cuirass-jobs)
(#:proc-args (systems #$@systems))
(#:inputs . (#$(guix-input "guix-modular" "master")))
(#:build-outputs . ())))
(#:build-outputs . ())
(#:priority . 1)))
#~())
#$@(if (member "staging" branches)
#~(`((#:name . "staging-staging")
@ -268,7 +270,8 @@
(#:proc . cuirass-jobs)
(#:proc-args (systems #$@systems))
(#:inputs . (#$(guix-input "staging" "staging")))
(#:build-outputs . ())))
(#:build-outputs . ())
(#:priority . 3)))
#~())
#$@(if (member "core-updates" branches)
#~(`((#:name . "core-updates-core-updates")
@ -279,7 +282,8 @@
(#:proc . cuirass-jobs)
(#:proc-args (subset . core) (systems #$@systems))
(#:inputs . (#$(guix-input "core-updates" "core-updates")))
(#:build-outputs . ())))
(#:build-outputs . ())
(#:priority . 4)))
#~())))