me
/
guix
Archived
1
0
Fork 0

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>
master
Maxime Devos 2022-08-28 16:47:46 +02:00 committed by Mathieu Othacehe
parent d720aa4a88
commit d8b960983d
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 2 additions and 1 deletions

View File

@ -7211,7 +7211,8 @@ run.")
(arguments (arguments
`(#:test-target "default" `(#:test-target "default"
;; TODO: Figure out why test hangs. ;; TODO: Figure out why test hangs.
#:tests? ,(not (target-riscv64?)) #:tests? ,(not (or (%current-target-system)
(target-riscv64?)))
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(add-before 'check 'set-home (add-before 'check 'set-home