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 "images", "tarball" and "tests" Cuirass specs.

* hydra/modules/sysadmin/services.scm (cuirass-specs): Add "images", "tarball"
and "tests" Cuirass specs.
This commit is contained in:
Mathieu Othacehe 2021-04-11 18:42:34 +02:00
parent b55bff8bcc
commit 6131023239
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -242,6 +242,12 @@
(specification
(name "master")
(build 'all)
(notifications #$(cuirass-notifications))
(priority 2)
(systems '#$systems))
(specification
(name "images")
(build 'images)
(build-outputs
(list
(build-output
@ -258,6 +264,21 @@
"pine64-barebones-raw-image"
"pinebook-pro-barebones-raw-image"))))
(notifications #$(cuirass-notifications))
(period 86400)
(priority 2)
(systems '#$systems))
(specification
(name "tarball")
(build 'tarball)
(notifications #$(cuirass-notifications))
(period 86400)
(priority 2)
(systems '#$systems))
(specification
(name "tests")
(build 'system-tests)
(notifications #$(cuirass-notifications))
(period 86400)
(priority 2)
(systems '#$systems)))
#~())