Skip to content

Commit c05086e

Browse files
authored
Merge pull request #157 from hiroyuki-sato/topic/fix-ci
Fix CI error with JRuby 9.4 test.
2 parents a9cf28c + 2286998 commit c05086e

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/check.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@ jobs:
2727
run: ruby -v
2828
- name: bundle install
2929
run: bundle install
30+
#
31+
# This step avoids the following error in the JRuby 9.4 test.
32+
#
33+
# Gem::LoadError: You have already activated rake 13.0.6,
34+
# but your Gemfile requires rake 13.1.0. Prepending
35+
# `bundle exec` to your command may solve this.
36+
#
37+
- name: install rake 13.1.0
38+
run: gem install rake -v 13.1.0
3039
- name: install embulk.jar
3140
run: "curl -L -o embulk.jar https://github.com/embulk/embulk/releases/download/v0.10.49/embulk-0.10.49.jar"
3241
- name: rake test

0 commit comments

Comments
 (0)