rbenv-ruby-build/share/ruby-build/truffleruby+graalvm-22.1.0
Mislav Marohnić db600ccdfd TruffleRuby: remove explicit openssl@1.1 requirement on macOS
TruffleRuby build definitions used to explicitly rely on `brew --prefix openssl@1.1` on macOS and abort installation if that was not found. However, this check didn't take into account that the user might have set OPENSSL_PREFIX in their environment, or that they have another `openssl@*` version installed via Homebrew. This change removes the `use_homebrew_openssl` check and allows TruffleRuby to perform its own OpenSSL detection.

https://github.com/oracle/truffleruby/blob/vm-23.1.0/lib/truffle/truffle/openssl-prefix.rb#L14-L17
2023-10-20 15:09:45 +02:00

16 lines
939 B
Text

platform="$(uname -s)-$(uname -m)"
case $platform in
Linux-x86_64)
install_package "truffleruby+graalvm-22.1.0" "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-22.1.0/graalvm-ce-java11-linux-amd64-22.1.0.tar.gz#78c628707007bb97b09562932ee16f50beb1c3fa4a36e4311a0465a4a718e683" truffleruby_graalvm
;;
Linux-aarch64)
install_package "truffleruby+graalvm-22.1.0" "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-22.1.0/graalvm-ce-java11-linux-aarch64-22.1.0.tar.gz#050a4d471247d91935f7f485e92d678f0163e1d6209e26e8fe75d7c924f73e71" truffleruby_graalvm
;;
Darwin-x86_64)
install_package "truffleruby+graalvm-22.1.0" "https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-22.1.0/graalvm-ce-java11-darwin-amd64-22.1.0.tar.gz#c4c9df94ca47b83b582758b87d39042732ba0193fc63f1ab93f6818005a1fe6b" truffleruby_graalvm
;;
*)
colorize 1 "Unsupported platform: $platform"
return 1
;;
esac