guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: ruby-ruby-prof: Skip tests on i686-linux.


From: guix-commits
Subject: branch master updated: gnu: ruby-ruby-prof: Skip tests on i686-linux.
Date: Mon, 24 Oct 2022 11:34:14 -0400

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

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 24937913fe gnu: ruby-ruby-prof: Skip tests on i686-linux.
24937913fe is described below

commit 24937913fe2914b964e2497074ef39b9b2886a5d
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Oct 24 18:33:06 2022 +0300

    gnu: ruby-ruby-prof: Skip tests on i686-linux.
    
    * gnu/packages/ruby.scm (ruby-ruby-prof)[arguments]: Skip the tests when
    cross-compiling or when targeting i686-linux.
---
 gnu/packages/ruby.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 0fda93fd59..102b206f31 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -7668,7 +7668,10 @@ variable length integers (varint) in Ruby Protocol 
Buffers.")
          "1r3xalp91l07m0cwllcxjzg6nkviiqnxkcbgg5qnzsdji6rgy65m"))))
     (build-system ruby-build-system)
     (arguments
-     `(#:phases
+      ;; It is unclear why the tests fail on i686-linux
+     `(#:tests? ,(not (or (%current-target-system)
+                          (target-x86-32?)))
+       #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'patch-rakefile
            ;; This fixes the following error: "NameError: uninitialized



reply via email to

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