File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change 20
20
os : [ ubuntu-22.04, ubuntu-20.04, macos-latest, windows-latest ]
21
21
ruby : ${{ fromJson(needs.ruby-versions.outputs.versions) }}
22
22
exclude :
23
- # uses non-standard MSYS2 OpenSSL 3 package
24
- - { os: windows-latest, ruby: head }
25
23
- { os: windows-latest, ruby: truffleruby }
26
24
- { os: windows-latest, ruby: truffleruby-head }
27
25
- { os: macos-latest, ruby: truffleruby }
38
36
uses : ruby/setup-ruby@v1
39
37
with :
40
38
ruby-version : ${{ matrix.ruby }}
41
-
42
- - name : depends
43
- run : bundle install
39
+ bundler-cache : true # `bundle install` and cache
44
40
45
41
# Enable the verbose option in mkmf.rb to print the compiling commands.
46
42
- name : enable mkmf verbose
@@ -52,10 +48,10 @@ jobs:
52
48
if : ${{ !matrix.skip-warnings }}
53
49
54
50
- name : compile
55
- run : rake compile
51
+ run : bundle exec rake compile
56
52
57
53
- name : test
58
- run : rake test TESTOPTS="-v --no-show-detail-immediately"
54
+ run : bundle exec rake test TESTOPTS="-v --no-show-detail-immediately"
59
55
timeout-minutes : 5
60
56
61
57
test-openssls :
You can’t perform that action at this time.
0 commit comments