Skip to content

Commit

Permalink
ruby : fix installation test (ggerganov#2519)
Browse files Browse the repository at this point in the history
  • Loading branch information
KitaitiMakoto authored and adutilleul committed Nov 16, 2024
1 parent c6d944a commit 05db315
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bindings/ruby/tests/test_package.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@ def setup
end

def test_install
filename = `rake -Tbuild`.match(/(whispercpp-(?:.+)\.gem)/)[1]
match_data = `rake -Tbuild`.match(/(whispercpp-(.+)\.gem)/)
filename = match_data[1]
version = match_data[2]
basename = "whisper.#{RbConfig::CONFIG["DLEXT"]}"
Dir.mktmpdir do |dir|
system "gem", "install", "--install-dir", dir.shellescape, "pkg/#{filename.shellescape}", exception: true
assert_path_exist File.join(dir, "gems/whispercpp-1.3.0/lib", basename)
assert_path_exist File.join(dir, "gems/whispercpp-#{version}/lib", basename)
end
end
end
Expand Down

0 comments on commit 05db315

Please sign in to comment.