Fix ruby gem release by disabling bundler frozen mode#1067
Merged
trunk-io[bot] merged 3 commits intomainfrom Apr 13, 2026
Merged
Fix ruby gem release by disabling bundler frozen mode#1067trunk-io[bot] merged 3 commits intomainfrom
trunk-io[bot] merged 3 commits intomainfrom
Conversation
|
😎 Merged directly without going through the merge queue, as the queue was empty and the PR was up to date with the target branch - details. |
The gemspec version is updated after bundle install runs, which causes bundler to fail in frozen/deployment mode when running `rake ruby_gem`. Disable frozen mode before building the pure ruby gem. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
ef78fa5 to
590fa41
Compare
- Create validate_ruby_platform_gem action that builds and validates the pure ruby fallback gem - Use the action in release_ruby_gem.yml (replacing inline steps) - Add validation to ruby.yml to catch issues on PRs Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
TylerJang27
approved these changes
Apr 13, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1067 +/- ##
==========================================
+ Coverage 81.70% 81.96% +0.26%
==========================================
Files 69 69
Lines 14878 14878
==========================================
+ Hits 12156 12195 +39
+ Misses 2722 2683 -39 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Handle x86_64 and aarch64 builds differently: - x86_64: Run stub_gen inside manylinux container (CentOS-based, old glibc) to avoid glibc mismatch with ubuntu-latest - aarch64: Run stub_gen on host since the cross-compile container is Ubuntu-based with compatible glibc Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
bb69920 to
a93981e
Compare
dfrankland
added a commit
that referenced
this pull request
Apr 13, 2026
Update from manylinux2014 (glibc 2.17) to manylinux_2_28 (glibc 2.28). This fixes glibc mismatch issues when building on ubuntu-latest which has a newer glibc than the old manylinux2014 container. Note: This drops support for older systems that require manylinux2014 (e.g., AWS Glue). If Glue support is needed, see PR #1067 for an alternative fix that preserves manylinux2014 compatibility. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 task
dfrankland
added a commit
that referenced
this pull request
Apr 13, 2026
Update from manylinux2014 (glibc 2.17) to manylinux_2_28 (glibc 2.28). This fixes glibc mismatch issues when building on ubuntu-latest which has a newer glibc than the old manylinux2014 container. Note: This drops support for older systems that require manylinux2014 (e.g., AWS Glue). If Glue support is needed, see PR #1067 for an alternative fix that preserves manylinux2014 compatibility. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
dfrankland
added a commit
that referenced
this pull request
Apr 13, 2026
Update from manylinux2014 (glibc 2.17) to manylinux_2_28 (glibc 2.28). This fixes glibc mismatch issues when building on ubuntu-latest which has a newer glibc than the old manylinux2014 container. Note: This drops support for older systems that require manylinux2014 (e.g., AWS Glue). If Glue support is needed, see PR #1067 for an alternative fix that preserves manylinux2014 compatibility. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
trunk-io bot
pushed a commit
that referenced
this pull request
Apr 13, 2026
Update from manylinux2014 (glibc 2.17) to manylinux_2_28 (glibc 2.28). This fixes glibc mismatch issues when building on ubuntu-latest which has a newer glibc than the old manylinux2014 container. Note: This drops support for older systems that require manylinux2014 (e.g., AWS Glue). If Glue support is needed, see PR #1067 for an alternative fix that preserves manylinux2014 compatibility. Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
validate_ruby_platform_gemaction that builds and validates the pure ruby fallback gemrelease_ruby_gem.ymlworkflow by disabling bundler frozen mode before buildingruby.ymlto catch issues on PRs (not just at release time)Error fixed
Changes
.github/actions/validate_ruby_platform_gem/action.yml.github/workflows/release_ruby_gem.yml(uses new action).github/workflows/ruby.yml(adds validation step)Test plan
ruby.ymlruns validation on this PR0.12.9-beta.0🤖 Generated with Claude Code