guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: rust-1.26: Remove aarch64-linux from the sup


From: guix-commits
Subject: branch master updated: gnu: rust-1.26: Remove aarch64-linux from the supported systems.
Date: Tue, 09 Mar 2021 04:05:35 -0500

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

cbaines pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new a728889  gnu: rust-1.26: Remove aarch64-linux from the supported 
systems.
a728889 is described below

commit a72888995173ace3190c69d324265dcc5fd66d3e
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Tue Mar 9 08:52:09 2021 +0000

    gnu: rust-1.26: Remove aarch64-linux from the supported systems.
    
    Because this package is a transitive input to many rust packages, Cuirass is
    spending lots of time failing to build it on ci.guix.gnu.org. This change 
will
    hopefully help with that issue.
    
    * gnu/packages/rust.scm (rust-1.26)[supported-systems]: Remove 
aarch64-linux.
---
 gnu/packages/rust.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm
index 1fc540f..c7840e1 100644
--- a/gnu/packages/rust.scm
+++ b/gnu/packages/rust.scm
@@ -822,7 +822,10 @@ jemalloc = \"" jemalloc "/lib/libjemalloc_pic.a" "\"
                  (substitute* 
"src/tools/cargo/tests/testsuite/generate_lockfile.rs"
                    ;; This test wants to update the crate index.
                    (("fn no_index_update") "#[ignore]\nfn no_index_update"))
-                 #t)))))))))
+                 #t))))))
+      (supported-systems
+       (delete "aarch64-linux"          ; fails to build, see #47019
+               (package-supported-systems base-rust))))))
 
 (define-public rust-1.27
   (let ((base-rust



reply via email to

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