File tree Expand file tree Collapse file tree 2 files changed +21
-13
lines changed
Expand file tree Collapse file tree 2 files changed +21
-13
lines changed Original file line number Diff line number Diff line change 2020 uses : ruby/setup-ruby@v1
2121 with :
2222 ruby-version : ${{ matrix.ruby }}
23- - name : rake-compiler
24- run : gem install rake-compiler
23+ - name : bundle install
24+ run : |
25+ bundle config set without profilers libs
26+ bundle install
2527 - name : compile
26- run : rake compile
28+ run : bundle exec rake compile
Original file line number Diff line number Diff line change @@ -14,22 +14,28 @@ gem "rubocop-on-rbs" if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.1'
1414gem "json"
1515gem "json-schema"
1616gem "goodcheck"
17- gem "dbm"
1817gem 'digest'
1918gem 'tempfile'
2019gem "rdoc"
21- gem "bigdecimal"
22- gem "abbrev"
23- gem "base64"
24- gem "mutex_m"
25- gem "nkf"
2620gem "fileutils"
2721gem "raap"
2822
29- # Performance profiling and benchmarking
30- gem 'stackprof'
31- gem 'memory_profiler'
32- gem 'benchmark-ips'
23+ group :libs do
24+ # Libraries required for stdlib test
25+ gem "abbrev"
26+ gem "base64"
27+ gem "bigdecimal"
28+ gem "dbm"
29+ gem "mutex_m"
30+ gem "nkf"
31+ end
32+
33+ group :profilers do
34+ # Performance profiling and benchmarking
35+ gem 'stackprof'
36+ gem 'memory_profiler'
37+ gem 'benchmark-ips'
38+ end
3339
3440# Test gems
3541gem "rbs-amber" , path : "test/assets/test-gem"
You can’t perform that action at this time.
0 commit comments