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 Cuirass spec for Guile.

* hydra/modules/sysadmin/services.scm (cuirass-specs): Add 'guile'
jobset.
This commit is contained in:
Ludovic Courtès 2023-03-05 22:34:02 +01:00
parent 27a1f0a083
commit 39f57a0f14
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1,6 +1,6 @@
;;; GNU Guix system administration tools.
;;;
;;; Copyright © 2016-2022 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2016-2023 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2017, 2018, 2020, 2022 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2022 Leo Famulari <leo@famulari.name>
;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
@ -419,7 +419,21 @@ collection instead."
(period 7200)
(priority 2)
(systems '("x86_64-linux"))))
#~())))
#~())
;; Bonus specs: projects other than Guix.
(specification
(name 'guile)
(build '(manifests "build-aux/manifest.scm"))
(channels
(list (channel
(name 'guile)
(url "https://git.savannah.gnu.org/git/guile.git")
(branch "main"))
%default-guix-channel))
(priority 5)
(systems '#$systems))))
;;;