Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pull ruby build #924

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
216084d
Add RUBY_BUILD_TARBALL_OVERRIDE to override the ruby tarball URL
eregon Sep 21, 2023
6663720
Cleanup in openssl compilation step
mislav Oct 13, 2023
47eda17
Remove implicit LDFLAGS, CPPFLAGS, and "ldflags_dirs" build step
mislav Oct 13, 2023
04ba857
Remove "ldflags_dirs" step from build definitions
mislav Oct 13, 2023
9b87491
Avoid compiling OpenSSL if the user supplied `--with-openssl-dir` on …
mislav Oct 13, 2023
5f4cea1
Merge pull request #2258 from eregon/overridable-url
mislav Oct 13, 2023
536495d
ruby-build 20231014
eregon Oct 14, 2023
7773f82
Cleanup in truffleruby+graalvm installation
mislav Oct 13, 2023
1d9b4e2
Merge pull request #2274 from rbenv/ruby-configure-opts
mislav Oct 14, 2023
7a741cf
Merge pull request #2270 from rbenv/openssl-clean
mislav Oct 16, 2023
aada31a
Avoiding excessive cd when fetching git repos (#2273)
mislav Oct 16, 2023
fe933ab
Merge pull request #2271 from rbenv/ldflags-clean
mislav Oct 16, 2023
a559b30
Improve `cached_tarball` test helper
mislav Oct 16, 2023
08b1cfa
Add `needs_openssl` test
mislav Oct 17, 2023
1dc3628
Merge pull request #2276 from rbenv/openssl-test
mislav Oct 17, 2023
0be9ae1
Add JRuby 9.4.4.0
headius Oct 18, 2023
0e4c61d
Merge pull request #2277 from headius/jruby-9.4.4.0
hsbt Oct 18, 2023
db600cc
TruffleRuby: remove explicit `openssl@1.1` requirement on macOS
mislav Oct 20, 2023
99fda28
JRuby: remove `openssl@1.1` requirement from `jruby-dev`
mislav Oct 20, 2023
c3bae8b
Fix fixing JRuby shebangs on macOS
mislav Oct 23, 2023
39f77ff
Skip ri/rdoc when installing jruby-launcher
eregon Oct 23, 2023
fbcb6bd
Bump up OpenSSL 3.1.4
hsbt Oct 25, 2023
4905179
Merge pull request #2283 from rbenv/openssl-3-1-4
hsbt Oct 25, 2023
4996d18
Add TruffleRuby and TruffleRuby GraalVM 23.1.1
eregon Oct 25, 2023
8afc6e1
ruby-build 20231025
eregon Oct 25, 2023
739a152
Merge ruby-build v20231025
jasonkarns Jun 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Skip ri/rdoc when installing jruby-launcher
eregon committed Oct 23, 2023
commit 39f77ffd17379f64ad4d3376d3e0aab68ea69a43
2 changes: 1 addition & 1 deletion bin/ruby-build
Original file line number Diff line number Diff line change
@@ -787,7 +787,7 @@ install_jruby_launcher() {
jruby_version="$(./ruby -e 'puts JRUBY_VERSION' 2>/dev/null)"
[[ $jruby_version != "9.2."* ]] ||
./ruby gem update -q --silent --system 3.3.26 --no-document --no-post-install-message >&4 2>&1
{ ./ruby gem install jruby-launcher
{ ./ruby gem install jruby-launcher --no-document
} >&4 2>&1
}

2 changes: 1 addition & 1 deletion test/build.bats
Original file line number Diff line number Diff line change
@@ -676,7 +676,7 @@ DEF

assert_build_log <<OUT
jruby [-e,puts JRUBY_VERSION]
jruby [gem,install,jruby-launcher]
jruby [gem,install,jruby-launcher,--no-document]
OUT

run ls "${INSTALL_ROOT}/bin"