guix-commits
[Top][All Lists]
Advanced

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

01/02: ci: Skip system tests on armhf-linux.


From: guix-commits
Subject: 01/02: ci: Skip system tests on armhf-linux.
Date: Mon, 21 Jan 2019 04:20:38 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit c680a7daa5e143dd37d1d045805e073497c591be
Author: Ludovic Courtès <address@hidden>
Date:   Mon Jan 21 09:59:36 2019 +0100

    ci: Skip system tests on armhf-linux.
    
    * gnu/ci.scm (system-test-jobs): Return the empty list when SYSTEM is
    "armhf-linux".
---
 gnu/ci.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/ci.scm b/gnu/ci.scm
index 943fbb6..2c04b71 100644
--- a/gnu/ci.scm
+++ b/gnu/ci.scm
@@ -250,7 +250,11 @@ system.")
                                 "." system))))
       (cons name (test->thunk test))))
 
-  (if (member system %guixsd-supported-systems)
+  (if (and (member system %guixsd-supported-systems)
+
+           ;; XXX: Our build farm has too few ARMv7 machines and they are very
+           ;; slow, so skip system tests there.
+           (not (string=? system "armhf-linux")))
       ;; Override the value of 'current-guix' used by system tests.  Using a
       ;; channel instance makes tests that rely on 'current-guix' less
       ;; expensive.  It also makes sure we get a valid Guix package when this



reply via email to

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