File tree 2 files changed +21
-13
lines changed
2 files changed +21
-13
lines changed Original file line number Diff line number Diff line change 20
20
uses : ruby/setup-ruby@v1
21
21
with :
22
22
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
25
27
- 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'
14
14
gem "json"
15
15
gem "json-schema"
16
16
gem "goodcheck"
17
- gem "dbm"
18
17
gem 'digest'
19
18
gem 'tempfile'
20
19
gem "rdoc"
21
- gem "bigdecimal"
22
- gem "abbrev"
23
- gem "base64"
24
- gem "mutex_m"
25
- gem "nkf"
26
20
gem "fileutils"
27
21
gem "raap"
28
22
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
33
39
34
40
# Test gems
35
41
gem "rbs-amber" , path : "test/assets/test-gem"
You can’t perform that action at this time.
0 commit comments