Skip to content

Commit

Permalink
CI: avoid rdiscount >= 2.2.7.2 on truffleruby
Browse files Browse the repository at this point in the history
  • Loading branch information
dentarg committed Dec 22, 2023
1 parent dcdebe9 commit 2b89659
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Gemfile
Expand Up @@ -56,7 +56,11 @@ end
gem 'nokogiri', '> 1.5.0'
gem 'pandoc-ruby', '~> 2.0.2'
gem 'rabl'
gem 'rdiscount', platforms: [:ruby]
if RUBY_ENGINE == 'truffleruby'
gem 'rdiscount', '< 2.2.7.2' # https://github.com/oracle/truffleruby/issues/3362
else
gem 'rdiscount', platforms: [:ruby]
end
gem 'rdoc'
gem 'redcarpet', platforms: [:ruby]
gem 'sass-embedded', '~> 1.54'
Expand Down

0 comments on commit 2b89659

Please sign in to comment.