Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ci.yml #170

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
os:
- macos-13
- macos-14
- macos-15
- ubuntu-latest
- windows-latest
ruby:
Expand All @@ -25,15 +26,16 @@ jobs:
- '3.1'
- '3.2'
- '3.3'
- '3.4'
- debug
- jruby
- truffleruby
include:
- { os: windows-latest , ruby: mingw }
- { os: windows-latest , ruby: ucrt }
- { os: windows-latest , ruby: mswin }
exclude:
- { os: macos-14 , ruby: '2.5' }
- { os: windows-latest , ruby: '3.0' }
- { os: macos-15 , ruby: '2.5' }
- { os: windows-latest , ruby: debug }
- { os: windows-latest , ruby: truffleruby }

Expand Down Expand Up @@ -63,12 +65,12 @@ jobs:
- run: rake install

- name: Run test against installed gem
# We can't use Fiddle gem with RubyInstaller because
# We can't use Fiddle gem with older RubyInstaller because
# RubyInstaller requires Fiddle before rubygems is loaded:
# https://github.com/oneclick/rubyinstaller2/blob/master/lib/ruby_installer/build/dll_directory.rb#L1
if: >-
matrix.os != 'windows-latest' ||
(matrix.os == 'windows-latest' && matrix.ruby == 'mswin')
(matrix.os == 'windows-latest' && matrix.ruby >= '3.0')
run: |
ruby -run -e mkdir -- -p tmp/
ruby -run -e cp -- -pr test/ tmp/
Expand Down
Loading