mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: ruby-rubocop: Don't ask to run tests when cross-compiling.
* gnu/packages/ruby.scm (ruby-rubocop)[arguments]{#:tests?}: When cross-compiling, set to #false. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
d720aa4a88
commit
d8b960983d
1 changed files with 2 additions and 1 deletions
|
@ -7211,7 +7211,8 @@ run.")
|
|||
(arguments
|
||||
`(#:test-target "default"
|
||||
;; TODO: Figure out why test hangs.
|
||||
#:tests? ,(not (target-riscv64?))
|
||||
#:tests? ,(not (or (%current-target-system)
|
||||
(target-riscv64?)))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'check 'set-home
|
||||
|
|
Loading…
Reference in a new issue