Skip to content

Commit

Permalink
Update Gemfile
Browse files Browse the repository at this point in the history
Signed-off-by: Youhei SASAKI <uwabami@gfd-dennou.org>
  • Loading branch information
uwabami committed Feb 6, 2025
1 parent 151bbb6 commit 6c9b437
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 18 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y rake-compiler
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Build and install
- name: Tests
run: |
bundle install
bundle exec rake gem
bundle exec rake compile -- --openmp=-fopenmp
bundle exec rake test
bundle exec rake package
gem install pkg/numru-narray-*.gem
- name: Tests
run: |
rake test
ruby test/test_all.rb
# MRI:
# name: ${{ matrix.os }} ruby-${{ matrix.ruby }}
# runs-on: ${{ matrix.os }}
Expand Down
13 changes: 4 additions & 9 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
source "http://rubygems.org"
# Add dependencies required to use your gem here.
# Example:
# gem "activesupport", ">= 2.3.5"

# Add dependencies to develop your gem here.
# Include everything needed to run rake, tests, features, etc.
source 'http://rubygems.org'
group :development do
gem "bundler", ">= 1.0.0"
gem "rake-compiler", ">= 0"
gem 'test-unit'
gem 'bundler', '>= 1.0.0'
gem 'rake-compiler', '>= 0'
end

0 comments on commit 6c9b437

Please sign in to comment.