diff options
author | Christopher Baines <mail@cbaines.net> | 2024-05-01 10:52:19 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-05-12 18:55:51 +0100 |
commit | 418710ccc06f27b808c5e485075312ea406e42db (patch) | |
tree | 5758b01a46d3cf560edf66d390a12a3d4d1c4345 | |
parent | 8b81fae667619efdcae9f01d25e32c471452e259 (diff) | |
download | guix-418710ccc06f27b808c5e485075312ea406e42db.tar.gz guix-418710ccc06f27b808c5e485075312ea406e42db.zip |
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
-rw-r--r-- | gnu/packages/astronomy.scm | 3 |
1 files changed, 3 insertions, 0 deletions
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) |