summaryrefslogtreecommitdiff
path: root/gnu/packages/ruby.scm
diff options
context:
space:
mode:
authorYelninei <yelninei@tutamail.com>2026-05-28 13:47:14 +0000
committerAndreas Enge <andreas@enge.fr>2026-06-04 22:19:32 +0200
commit1563433bdf04fedffe8c72a172ea0d15b0c5dc98 (patch)
tree71486b287185e8182af7b3d0277c414617485907 /gnu/packages/ruby.scm
parent6ddde3f7c37746e00ef4d426399be68c5329cc8c (diff)
gnu: ruby-3.4: Skip a test on the Hurd.
* gnu/packages/ruby.scm (ruby-3.4)[arguments]<#:phases>: Add 'skip-tests phase on the Hurd. Change-Id: Icb90a783980b088f48e5fc2f5d4fd6d75fafc04f Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages/ruby.scm')
-rw-r--r--gnu/packages/ruby.scm7
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 758e2a792b6..32c6051aed9 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -194,7 +194,12 @@ a focus on simplicity and productivity.")
194 "test/ruby/test_process.rb" 194 "test/ruby/test_process.rb"
195 "test/ruby/test_system.rb" 195 "test/ruby/test_system.rb"
196 "tool/rbinstall.rb") 196 "tool/rbinstall.rb")
197 (("/bin/sh") (which "sh")))))))) 197 (("/bin/sh") (which "sh")))))
198 ,@(if (system-hurd?)
199 '((add-after 'unpack 'skip-tests
200 (lambda _
201 (delete-file "bootstraptest/test_ractor.rb"))))
202 '()))))
198 (native-inputs 203 (native-inputs
199 (append (if (%current-target-system) 204 (append (if (%current-target-system)
200 (list this-package) 205 (list this-package)