Skip to content

Commit f215fc0

Browse files
authored
Merge pull request #1623 from ychin/ci-use-ruby34
ci: Use Ruby 3.4 instead of the recently released 4.0 for now
2 parents 796ea69 + b8ebacc commit f215fc0

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/bin/ruby"
43+
vi_cv_path_ruby: "%s/opt/ruby@3.4/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/lib/libruby.dylib
49+
vi_cv_dll_name_ruby_arm64: /opt/homebrew/opt/ruby@3.4/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
140+
brew install --quiet ruby@3.4 # Ruby 4.0 is broken in Vim. Use 3.4 until that's fixed upstream.
141141
brew install --quiet lua
142142
143143
if [[ -d $(brew --prefix)/Cellar/perl ]]; then

0 commit comments

Comments
 (0)