File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ jobs:
15
15
runs-on : ubuntu-latest
16
16
strategy :
17
17
matrix :
18
- ruby-version : ['2.5 ', '2.6 ', '2.7 ', '3.0 ']
18
+ ruby-version : ['2.6 ', '2.7 ', '3.0 ', '3.1 ']
19
19
20
20
steps :
21
21
- uses : actions/checkout@v2
22
22
- name : Set up Ruby
23
23
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
24
24
# change this to (see https://github.com/ruby/setup-ruby#versioning):
25
25
# uses: ruby/setup-ruby@v1
26
- uses : ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
26
+ uses : ruby/setup-ruby@168d6a54b412713c0ed60998a78093a270ca8d84
27
27
with :
28
28
ruby-version : ${{ matrix.ruby-version }}
29
29
bundler-cache : true # runs 'bundle install' and caches installed gems automatically
Original file line number Diff line number Diff line change 1
1
require "mkmf"
2
2
3
3
$CFLAGS = '-I. -O3 -std=c99'
4
+ $CPPFLAGS += " -fdeclspec" if CONFIG [ 'CXX' ] =~ /clang/
4
5
5
6
Dir . chdir File . expand_path ( '..' , __FILE__ ) do
6
7
$srcs = Dir [ '**/*.c' ]
You can’t perform that action at this time.
0 commit comments