diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-05-13 10:50:12 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-05-13 10:50:12 +0300 |
commit | a0221c342481a650f7e1ad5014a7c473b3165e7a (patch) | |
tree | 43d3c0a432666fe358ba943bcab4797a8a9f73e6 | |
parent | 6ba29e02108ed144da1234b4b5512ee03865dcf6 (diff) | |
download | guix-a0221c342481a650f7e1ad5014a7c473b3165e7a.tar.gz guix-a0221c342481a650f7e1ad5014a7c473b3165e7a.zip |
gnu: alfa: Skip tests when cross compiling.
* gnu/packages/astronomy.scm (alfa)[arguments]: Also skip tests when
cross compiling.
Change-Id: Ie96b418a652feff6b4dfc79ffcac9d0f1900fce5
-rw-r--r-- | gnu/packages/astronomy.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 965d272d41..dd90884e12 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -127,9 +127,9 @@ #$output) (string-append "VERSION=" #$version)) - #:tests? (not - ;; The test suite consumes all disk space - (target-riscv64?)) + #:tests? (not (or (%current-target-system) + ;; The test suite consumes all disk space + (target-riscv64?))) #:phases #~(modify-phases %standard-phases (delete 'configure) (delete 'check) |