Skip to content

Commit 4a129cd

Browse files
committed
ci: Revert hard-coded Ruby 3.4 to use Ruby 4.0
Ruby 4.0 integration has been fixed upstream (871d2cc). Remove the hard-coded 3.4 pin in CI so we can use the latest Ruby version. This reverts commit b8ebacc.
1 parent 0dd9730 commit 4a129cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/macvim-buildtest.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ env:
4040
vi_cv_path_python: /Library/Frameworks/Python.framework/Versions/2.7/bin/python
4141
vi_cv_path_python3: "%s/bin/python3"
4242
vi_cv_path_plain_lua: "%s/bin/lua"
43-
vi_cv_path_ruby: "%s/opt/ruby@3.4/bin/ruby"
43+
vi_cv_path_ruby: "%s/opt/ruby/bin/ruby"
4444
vi_cv_dll_name_perl: /System/Library/Perl/%s/darwin-thread-multi-2level/CORE/libperl.dylib
4545
vi_cv_dll_name_python: /Library/Frameworks/Python.framework/Versions/2.7/Python
4646
vi_cv_dll_name_python3: /usr/local/Frameworks/Python.framework/Versions/Current/Python
4747
vi_cv_dll_name_python3_arm64: /opt/homebrew/Frameworks/Python.framework/Versions/Current/Python
4848
vi_cv_dll_name_ruby: /usr/local/opt/ruby/lib/libruby.dylib
49-
vi_cv_dll_name_ruby_arm64: /opt/homebrew/opt/ruby@3.4/lib/libruby.dylib
49+
vi_cv_dll_name_ruby_arm64: /opt/homebrew/opt/ruby/lib/libruby.dylib
5050
vi_cv_dll_name_lua: /usr/local/lib/liblua.dylib
5151
vi_cv_dll_name_lua_arm64: /opt/homebrew/lib/liblua.dylib
5252

@@ -137,7 +137,7 @@ jobs:
137137
# be installed on runners. Since we use stable ABI, the exact version
138138
# on CI does not matter.
139139
140-
brew install --quiet ruby@3.4 # Ruby 4.0 is broken in Vim. Use 3.4 until that's fixed upstream.
140+
brew install --quiet ruby
141141
brew install --quiet lua
142142
143143
if [[ -d $(brew --prefix)/Cellar/perl ]]; then

0 commit comments

Comments
 (0)