I’m trying to use a version of ruby on circle that is a patch version different from the version in our .ruby-version
file.
I specified the version under in circle.yml
but it still downloads the version in .ruby-version
(or sometimes even compiles! the reason for doing this).
After downloading/building the version found in .ruby-version
, it switches to the version specified in circle.yml
.
The downloading/compiling of the version specified in .ruby-version
is completely redundant as it switches to a different version immediately after.
Is there any way to fix this so that we can specify a different version in circle.yml
without the redundant step?