mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: ruby-2.6: Skip test on the Hurd.
* gnu/packages/ruby.scm (ruby-2.7)[arguments]: When building natively on the Hurd, add phase 'skip-tests'.
This commit is contained in:
parent
fb6f94864d
commit
7ab9c0f99b
1 changed files with 8 additions and 1 deletions
|
@ -33,6 +33,7 @@
|
||||||
;;; Copyright © 2022 Taiju HIGASHI <higashi@taiju.info>
|
;;; Copyright © 2022 Taiju HIGASHI <higashi@taiju.info>
|
||||||
;;; Copyright © 2023 Yovan Naumovski <yovan@gorski.stream>
|
;;; Copyright © 2023 Yovan Naumovski <yovan@gorski.stream>
|
||||||
;;; Copyright © 2023 gemmaro <gemmaro.dev@gmail.com>
|
;;; Copyright © 2023 gemmaro <gemmaro.dev@gmail.com>
|
||||||
|
;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -195,7 +196,13 @@ a focus on simplicity and productivity.")
|
||||||
"test/ruby/test_system.rb"
|
"test/ruby/test_system.rb"
|
||||||
"tool/rbinstall.rb")
|
"tool/rbinstall.rb")
|
||||||
(("/bin/sh") (which "sh")))
|
(("/bin/sh") (which "sh")))
|
||||||
#t)))))
|
#t))
|
||||||
|
,@(if (system-hurd?)
|
||||||
|
'((add-after 'unpack 'skip-tests
|
||||||
|
(lambda _
|
||||||
|
(delete-file "bootstraptest/test_io.rb")
|
||||||
|
(delete-file "test/ruby/test_io.rb"))))
|
||||||
|
'()))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list autoconf))))
|
(list autoconf))))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue