Conversation
eregon
left a comment
There was a problem hiding this comment.
Thank you!
I totally missed that variable 😅
|
BTW do you have an idea how to apply this to all truffleruby/truffleruby+graalvm versions >= 34 (so |
|
Ah given (sorry, it's late here) |
|
In theory, it can be done by checking the latest version available in As 34 come out, as part of the ruby-builder-bot PR, we can just manually add a commit to have it changed from: truffleruby_versions = %w[truffleruby truffleruby-head truffleruby+graalvm truffleruby+graalvm-head]
matrix += non_windows_runners.product(truffleruby_versions)To: truffleruby_versions = %w[truffleruby truffleruby-head truffleruby+graalvm truffleruby+graalvm-head]
matrix += (macos_arm64_runners + ubuntu_runners).product(truffleruby_versions) |
@eregon Please take a look if this looks good to you.