Skip to content

Commit

Permalink
Test Valgrind
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Mar 13, 2024
1 parent 73c900a commit 1818e62
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -16,4 +16,5 @@ jobs:
ruby-version: 3.3
bundler-cache: true
- run: bundle exec rake compile
- run: bundle exec rake test
- run: sudo apt-get update && sudo apt-get install valgrind
- run: bundle exec rake test:valgrind
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ gemspec
gem "rake"
gem "rake-compiler"
gem "minitest", ">= 5"
gem "ruby_memcheck"
8 changes: 7 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
require "bundler/gem_tasks"
require "rake/testtask"
require "rake/extensiontask"
require "ruby_memcheck"

task default: :test
Rake::TestTask.new do |t|
test_config = lambda do |t|
t.libs << "test"
t.pattern = "test/**/*_test.rb"
t.warning = false
end
Rake::TestTask.new(:test, &test_config)

namespace :test do
RubyMemcheck::TestTask.new(:valgrind, &test_config)
end

Rake::ExtensionTask.new("fasttext") do |ext|
ext.name = "ext"
Expand Down

0 comments on commit 1818e62

Please sign in to comment.