guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: berlin: Split Cuirass guix specification in two.


From: Mathieu Othacehe
Subject: branch master updated: berlin: Split Cuirass guix specification in two.
Date: Sat, 22 Oct 2022 05:19:24 -0400

This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch master
in repository maintenance.

The following commit(s) were added to refs/heads/master by this push:
     new d6a44ae  berlin: Split Cuirass guix specification in two.
d6a44ae is described below

commit d6a44aecb1e2c8c359e62c9e8fcb32d4c262e3f1
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Sat Oct 22 11:18:11 2022 +0200

    berlin: Split Cuirass guix specification in two.
    
    * hydra/modules/sysadmin/services.scm (cuirass-specs): Restrict guix
    specification to x86_64-linux and i686-linux. Add a new guix-other-archs for
    aarch64-linux and powerpc64le-linux.
---
 hydra/modules/sysadmin/services.scm | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/hydra/modules/sysadmin/services.scm 
b/hydra/modules/sysadmin/services.scm
index de76fe9..d9b3ce8 100644
--- a/hydra/modules/sysadmin/services.scm
+++ b/hydra/modules/sysadmin/services.scm
@@ -243,7 +243,16 @@
                 (build 'guix)
                 (notifications #$(cuirass-notifications))
                 (priority 1)
-                (systems '#$systems))
+                ;; All the supported architecture should go here but as some
+                ;; are quite unstable, focus on the well supported ones here.
+                (systems '("x86_64-linux" "i686-linux")))
+               (specification
+                (name "guix-other-archs")
+                (build 'guix)
+                (notifications #$(cuirass-notifications))
+                (priority 1)
+                ;; Restore armhf-linux when it is fixed.
+                (systems '("aarch64-linux" "powerpc64le-linux")))
                (specification
                 (name "master")
                 (build 'all)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]