mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05: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 @@ (define-public ruby-rubocop
|
|||
(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