We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5f48c3 commit 5a3d56dCopy full SHA for 5a3d56d
.github/workflows/ci.yml
@@ -25,6 +25,7 @@ jobs:
25
- "3.0"
26
- "2.7"
27
- "2.6"
28
+ - "2.5"
29
- debug
30
31
steps:
@@ -58,6 +59,17 @@ jobs:
58
59
GEMFILE
60
BUNDLE_GEMFILE=Gemfile.irb bundle install --jobs 4 --retry 3
61
62
+ - name: Install ffi 1.6.x and irb < 1.4.3 (if Ruby 2.5)
63
+ if: |
64
+ matrix.ruby == '2.5'
65
+ run: |
66
+ cat <<GEMFILE > Gemfile.irb
67
+ source 'https://rubygems.org'
68
+ gem 'ffi', '~> 1.6.0'
69
+ gem 'irb', '< 1.4.3'
70
+ GEMFILE
71
+ BUNDLE_GEMFILE=Gemfile.irb bundle install --jobs 4 --retry 3
72
+
73
- run: gem install pkg/*.gem
74
75
- run: ruby -r iruby -e "p IRuby::SessionAdapter.select_adapter_class"
0 commit comments