Replies: 1 comment
-
That makes sense. I think |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
GitHub is rolling out
ubuntu-24.04
as their newubuntu-latest
, and I just discovered that this image is missingreadline.h
. As a result,readline-ext
cannot be installed without first installing the development packages, and several of my builds failed.nevans/test-setup-ruby-readline
— a minimal test repobundle install
only fails forubuntu-24.04
.Since
readline-ext
was removed from ruby 3.3, maybe this isn't something that needs to be addressed here. But it took me a few minutes to debug and I couldn't find any documentation of this issue, neither in this repo nor in actions/runner-images. So, rather than create an issue, I'm simply posting about it here, in case it might help someone else.I assume that this can be fixed by simply adding a
sudo apt-get install libreadline-dev
step, before theruby/setup-ruby
setup. That said, I no longer need this dependency in the project that triggered this issue, so I'm simply removing it from our Gemfile. 😉Beta Was this translation helpful? Give feedback.
All reactions