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.
This commit is contained in:
parent
d099c9c09b
commit
a728889951
1 changed files with 4 additions and 1 deletions
|
@ -822,7 +822,10 @@ (define-public rust-1.26
|
||||||
(substitute* "src/tools/cargo/tests/testsuite/generate_lockfile.rs"
|
(substitute* "src/tools/cargo/tests/testsuite/generate_lockfile.rs"
|
||||||
;; This test wants to update the crate index.
|
;; This test wants to update the crate index.
|
||||||
(("fn no_index_update") "#[ignore]\nfn no_index_update"))
|
(("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
|
(define-public rust-1.27
|
||||||
(let ((base-rust
|
(let ((base-rust
|
||||||
|
|
Loading…
Reference in a new issue