Skip to content

Commit 0323d83

Browse files
committed
switch to ruby 3.4
Signed-off-by: Christian Brabandt <cb@256bit.org>
1 parent 0934c50 commit 0323d83

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

appveyor.bat

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ set "RACKET_DIR=%DEPENDENCIES%\racket%RACKET_VER%-%ARCH%"
102102
set "MZSCHEME_VER=%RACKET_VER%"
103103

104104
@rem Ruby
105-
set "RUBY_VER=33"
106-
set "RUBY_API_VER_LONG=3.3.0"
107-
set "RUBY_BRANCH=ruby_3_3"
108-
set "RUBY_RELEASE=3.3.8-1"
105+
set "RUBY_VER=34"
106+
set "RUBY_API_VER_LONG=3.4.0"
107+
set "RUBY_BRANCH=ruby_3_4"
108+
set "RUBY_RELEASE=3.4.8-1"
109109
set "RUBY_SRC_URL=https://github.com/ruby/ruby/archive/%RUBY_BRANCH%.zip"
110110
set "RUBY_URL=https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-%RUBY_RELEASE%/rubyinstaller-%RUBY_RELEASE%-%ARCH%.7z"
111111
set "RUBY_DIR=%DEPENDENCIES%\Ruby%RUBY_VER%-%ARCH%"
@@ -270,14 +270,14 @@ move %DEPENDENCIES%\rubyinstaller-%RUBY_RELEASE%-%ARCH% ^
270270
@rem RubyInstaller is built by MinGW, so we cannot use header files from it.
271271
@rem Download the source files and generate config.h for MSVC.
272272
call :downloadfile "%RUBY_SRC_URL%" downloads\ruby_src.zip
273-
@rem Extract the files only we needed to reduce the building time.
274-
7z.exe x -y downloads\ruby_src.zip */bin */include */enc/Makefile.in */win32 ^
275-
*/common.mk -ir!version.h -xr!README.* -xr!*/win32/*.c -xr!*/win32/*.h ^
276-
-o.. > nul || exit 1
273+
@rem Extract all files
274+
7z.exe x -y downloads\ruby_src.zip -o.. > nul || exit 1
277275
move ..\ruby-%RUBY_BRANCH% ..\ruby > nul || exit 1
278276
pushd ..\ruby
279277
call win32\configure.bat
280-
nmake.exe -l .config.h.time || exit 1
278+
:: build Ruby
279+
nmake.exe
280+
:: nmake.exe -l .config.h.time || exit 1
281281
xcopy.exe /S /Y .ext\include %RUBY_DIR%\include\ruby-%RUBY_API_VER_LONG%
282282
popd
283283
:skipruby

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ deploy:
138138
* [Python](https://www.python.org/downloads/) 2.7
139139
* [Python3](https://www.python.org/downloads/) 3.8 or later
140140
* [Racket](https://download.racket-lang.org/) 8.7 (BC)
141-
* [RubyInstaller](http://rubyinstaller.org/downloads/) 3.3
141+
* [RubyInstaller](http://rubyinstaller.org/downloads/) 3.4
142142
* [libsodium](https://download.libsodium.org/libsodium/) 1.0.19
143143
</details>
144144

0 commit comments

Comments
 (0)