mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-01-13 08:20:18 +00:00
d3f7137cc9
* Improve Rakefile * Remove intermediate files * Remove unnecessary manipulations from extconf.rb * Add README and LINCENSE to source files * Manage ext source files using YAML file * Use extsources.yaml to include files into gem package file * Add git-managed source files to build dependency * Add test task * Download model for test if not exists * Add test for build * Ignore gem package directory * Enable GitHub action for Ruby binding * Fix model name * Build lib file for test * Use extension for each platform * Use extension for each platform on testing * Move built lib file rather than copy * Add intermediate files to clean targets
56 lines
1.3 KiB
Ruby
56 lines
1.3 KiB
Ruby
require 'rake/clean'
|
|
require "bundler/gem_tasks"
|
|
require "pathname"
|
|
require "yaml"
|
|
require "rake/testtask"
|
|
|
|
extsources = YAML.load_file("extsources.yaml")
|
|
extsources.each_pair do |src_dir, dests|
|
|
dests.each do |dest|
|
|
src = Pathname(src_dir)/File.basename(dest)
|
|
|
|
file src
|
|
file dest => src do |t|
|
|
cp t.source, t.name
|
|
end
|
|
end
|
|
end
|
|
SOURCES = extsources.values.flatten
|
|
CLEAN.include SOURCES
|
|
CLEAN.include FileList["ext/*.o", "ext/whisper.so", "ext/whisper.bundle", "ext/whisper.dll"]
|
|
|
|
task build: SOURCES + FileList[
|
|
"ext/extconf.rb",
|
|
"ext/ruby_whisper.h",
|
|
"ext/ruby_whisper.cpp",
|
|
"whispercpp.gemspec",
|
|
]
|
|
|
|
directory "pkg"
|
|
CLOBBER.include "pkg"
|
|
|
|
TEST_MODEL = "../../models/ggml-base.en.bin"
|
|
LIB_NAME = "whisper".ext(RbConfig::CONFIG["DLEXT"])
|
|
LIB_FILE = File.join("lib", LIB_NAME)
|
|
|
|
directory "lib"
|
|
task LIB_FILE => SOURCES + ["lib"] do |t|
|
|
Dir.chdir "ext" do
|
|
sh "ruby extconf.rb"
|
|
sh "make"
|
|
end
|
|
mv "ext/#{LIB_NAME}", t.name
|
|
end
|
|
CLEAN.include LIB_FILE
|
|
|
|
Rake::TestTask.new do |t|
|
|
t.test_files = FileList["tests/test_*.rb"]
|
|
end
|
|
task test: [TEST_MODEL, LIB_FILE]
|
|
|
|
file TEST_MODEL do
|
|
Dir.chdir "../.." do
|
|
sh "./models/download-ggml-model.sh base.en"
|
|
end
|
|
end
|