diff mbox series

[bug#70694] gnu: alfa: Don't run tests on riscv64-linux.

Message ID b9fdbbe0e5a26cb5f5c2e808457e8b6d64cbc47a.1714557139.git.mail@cbaines.net
State New
Headers show
Series [bug#70694] gnu: alfa: Don't run tests on riscv64-linux. | expand

Commit Message

Christopher Baines May 1, 2024, 9:52 a.m. UTC
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(+)


base-commit: 7d4ae2fca723114fb1df56de33b82177fbc4d0a6

Comments

Sharlatan Hellseher May 5, 2024, 8:41 p.m. UTC | #1
Hi Christopher.

Nice catch! Where may I check that next time (in the process of
preparing 2024-05 astro update)?

I will open an issue in upstream as well.

--
Oleg
Christopher Baines May 10, 2024, 4:26 p.m. UTC | #2
Sharlatan Hellseher <sharlatanus@gmail.com> writes:

> Nice catch! Where may I check that next time (in the process of
> preparing 2024-05 astro update)?

QA currently doesn't try to build things on riscv64-linux yet, but I'm
hoping to add this in the future.

> I will open an issue in upstream as well.

Great, thanks :)
Christopher Baines May 12, 2024, 6:49 p.m. UTC | #3
Christopher Baines <mail@cbaines.net> writes:

> 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(+)

Pushed to master as 418710ccc06f27b808c5e485075312ea406e42db.

Chris
diff mbox series

Patch

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 @@  (define-public alfa
                                                #$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)