Note
This tool is currently in active development. We are very much looking for your feedback.
A major bottleneck for every Ruby developers when running bundle install is the compilation of native gem extensions. To illustrate this issue, running bundle install on a new Rails application takes around 25 seconds on a MacBook Pro M4, and 80% of that time is spent compiling the couple dozens of gems having native extensions. It would take only 5 seconds if it wasn't for the compilation.
The Python community had exactly the same issue and came up with the amazing cibuildwheel solution to provide a CI based compilation approach to help maintainers ship their libraries will precompiled binaries for various platforms.
This tool modestly tries to follow the same approach by helping ruby maintainers ship their gems with precompiled binaries.
Precompilation isn't new in the Ruby ecosystem and some maintainers have been releasing their gems with precompiled binaries to speedup the installation process since a while (e.g. nokogiri, grpc, karafka-rdkafka). One of the most popular tool that enables to precompile binaries for different platform is the great rake-compiler-dock toolchain. It uses a cross compilation approach by periodically building docker images for various platforms and spinning up containers to compile the binaries.
As noted by @flavorjones, this toolchain works great but it's complex and brittle compared to the more simple process of compiling on the target platform.
Note
cibuildgem is for now not able to compile projects that needs to link on external libraries. Unless the project vendors those libraries or uses mini_portile.
While cibuildgem is generally not meant to be used locally, it provides a command to generate the right GitHub workflow for your project:
- Install cibuildgem:
gem install cibuildgem - Generate the workflow:
cdin your gem's folder and runcibuildgem ci_template - Commit the
.github/workflows/cibuildgem.yamlfile.
Once pushed in your repository default branch, the workflow that we just generated is actionable manually on the GitHub action page. It will run in sequence:
- Compile the gem on the target platform (defaults to MacOS ARM, MacOS Intel, Windows, Ubuntu 24)
- Once the compilation succeeds on all platform, it proceeds to run the test suite on the target platform. This will trigger many CI steps as the testing matrix is big.
- Once the test suite passes for all platforms and all Ruby versions the gem is compatible with, the action proceeds to installing the gem we just packaged. This step ensure that the gem is actually installable.
- [OPTIONAL] When trigering the workflow manually, you can tick the box to automatically release the gems that were packaged. This works using the RubyGems trusted publisher feature (documentation to write later). If you do no want the tool to make the release, you can download all the GitHub artifacts that were uploaded. It will contain all the gems with precompiled binaries in the
pkgfolder. You are free to download them locally and release them yourself from your machine.
Due to the RubyGems specification, we can't release a gem with precompiled binaries for a specific Ruby version. Because the Ruby ABI is incompatible between minor versions, Rake Compiler (the tool underneath cibuildgem), compiles the binary for every minor Ruby versions your gem supports. All those binaries will be packaged in the gem (called a fat gem) in different folder such as 3.0/date.so, 3.1/date.so etc...
At runtime, your gem need to require the right binary based on the running ruby version.
# Before
require 'date_core.so'
# After
begin
ruby_version = /(\d+\.\d+)/.match(::RUBY_VERSION)
require "#{ruby_version}/date_core"
rescue LoadError
# It's important to leave for users that can not or don't want to use the gem with precompiled binaries.
require "date_core"
end| MacOS Intel | MacOS ARM | Windows x64 UCRT | Linux GNU x86_64 | Linux AARCH64 | |
|---|---|---|---|---|---|
| Ruby 3.1 | 🟢 | 🟢 | 🟢 | 🟢 | 🟢 |
| Ruby 3.2 | 🟢 | 🟢 | 🟢 | 🟢 | 🟢 |
| Ruby 3.3 | 🟢 | 🟢 | 🟢 | 🟢 | 🟢 |
| Ruby 3.4 | 🟢 | 🟢 | 🟢 | 🟢 | 🟢 |
If you'd like to run a end-to-end test, the date gem is vendored in this project. You can trigger a manual run to do the whole compile, test, install dance from the GitHub action menu.