cbaines pushed a commit to branch master
in repository guix.
commit 418710ccc06f27b808c5e485075312ea406e42db
Author: Christopher Baines <[email protected]>
AuthorDate: Wed May 1 10:52:19 2024 +0100
gnu: alfa: Don't run tests on riscv64-linux.
As the test suite seems to consume all the disk space.
* gnu/packages/astronomy.scm (alfa)[arguments]: Don't run tests on riscv64.
Change-Id: Ifa52b8205387c22b386ccad97fd6e69723193a16
---
gnu/packages/astronomy.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 560d5491e7..965d272d41 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -127,6 +127,9 @@
#$output)
(string-append "VERSION="
#$version))
+ #:tests? (not
+ ;; The test suite consumes all disk space
+ (target-riscv64?))
#:phases #~(modify-phases %standard-phases
(delete 'configure)
(delete 'check)