We are currently using the circleci/ruby:* images in our builds, however, those images are deprecated and have been replaced by the new cimg/ruby:* images.
We should start using them, as they will become outdated soon. The last version available for the first one is 2.7.3 and the cimg one comes with 2.7.4.
We should keep in mind that the ruby-browsers version is different to the one we currently use, because of two reasons:
it adds node and it could cause conflicts with our required version of node
it doesn't come with chrome and firefox installed, as they instruct you to install it with a separated orb
Regardless of those issues, for the common builds, the cimg/ruby:2.7 works fine and it's the recommended version by CircleCI.
We are currently using the
circleci/ruby:*
images in our builds, however, those images are deprecated and have been replaced by the newcimg/ruby:*
images.We should start using them, as they will become outdated soon. The last version available for the first one is 2.7.3 and the
cimg
one comes with 2.7.4.We should keep in mind that the
ruby-browsers
version is different to the one we currently use, because of two reasons:Regardless of those issues, for the common builds, the
cimg/ruby:2.7
works fine and it's the recommended version by CircleCI.