guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: cuirass: Disable tests on aarch64.


From: guix-commits
Subject: branch master updated: gnu: cuirass: Disable tests on aarch64.
Date: Fri, 09 Apr 2021 08:26:45 -0400

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

mothacehe pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 931572d  gnu: cuirass: Disable tests on aarch64.
931572d is described below

commit 931572d230cf7c6d638cf59532a750dc7c0586a4
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Fri Apr 9 14:25:50 2021 +0200

    gnu: cuirass: Disable tests on aarch64.
    
    * gnu/packages/ci.scm (cuirass)[arguments]: Disable tests on aarch64.
---
 gnu/packages/ci.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gnu/packages/ci.scm b/gnu/packages/ci.scm
index cdd397d..030fc73 100644
--- a/gnu/packages/ci.scm
+++ b/gnu/packages/ci.scm
@@ -77,6 +77,11 @@
                     (ice-9 rdelim)
                     (ice-9 popen))
          #:configure-flags '("--localstatedir=/var") ;for /var/log/cuirass
+         ;; XXX: HTTP tests fail on aarch64 due to Fibers errors, disable them
+         ;; on that architecture for now.
+         #:tests? ,(let ((s (or (%current-target-system)
+                                (%current-system))))
+                     (not (string-prefix? "aarch64" s)))
          #:parallel-tests? #f
          #:phases
          (modify-phases %standard-phases



reply via email to

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