Skip to content

Commit c6a8710

Browse files
authored
Update CI to refresh apt packages before installing IRuby gem (#367)
1 parent c95d162 commit c6a8710

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,10 @@ jobs:
6868
GEMFILE
6969
BUNDLE_GEMFILE=Gemfile.irb bundle install --jobs 4 --retry 3
7070
71-
- run: gem install pkg/*.gem
71+
- name: Install IRuby gem
72+
run: |
73+
sudo apt update # Preparation for Native Package Installer
74+
gem install pkg/*.gem
7275
7376
- run: ruby -r iruby -e "p IRuby::SessionAdapter.select_adapter_class"
7477
env:

0 commit comments

Comments
 (0)