Skip to content

Commit 80fcc52

Browse files
committed
Bump Rubies: 1.9.3-p551, 2.0.0-p645, 2.1.6, and add 2.2.2
1 parent 9051b45 commit 80fcc52

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

bin/package_win32_fat_binary

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cd '/vagrant'
1313
cd $1
1414

1515
base_version=${BASE_VERSION:-1.9.3}
16-
cc_versions=${RUBY_CC_VERSION:-1.8.7:1.9.3:2.0.0:2.1.4}
16+
cc_versions=${RUBY_CC_VERSION:-1.8.7:1.9.3:2.0.0:2.1.6:2.2.2}
1717

1818
# Use Ruby 1.9.3 as base to cross-compile to different versions
1919
rvm use $base_version

bin/prepare_xrubies

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,29 @@ rake-compiler cross-ruby VERSION=1.8.7-p374 HOST=i586-mingw32msvc
2424

2525
# Build 1.9.3 using 1.9.3 as base
2626
rvm use 1.9.3
27-
rake-compiler cross-ruby VERSION=1.9.3-p550 HOST=i586-mingw32msvc
27+
rake-compiler cross-ruby VERSION=1.9.3-p551 HOST=i586-mingw32msvc
2828

2929
# Use all CPUs for building 2.0+
3030
export MAKE="make -j$(nproc)"
3131

3232
# Build Ruby 2.0.0
33-
rake-compiler cross-ruby VERSION=2.0.0-p594 HOST=i686-w64-mingw32 debugflags="-g"
33+
rake-compiler cross-ruby VERSION=2.0.0-p645 HOST=i686-w64-mingw32 debugflags="-g"
3434

3535
# Build x64 Ruby 2.0.0
36-
rake-compiler cross-ruby VERSION=2.0.0-p594 HOST=x86_64-w64-mingw32 debugflags="-g"
36+
rake-compiler cross-ruby VERSION=2.0.0-p645 HOST=x86_64-w64-mingw32 debugflags="-g"
3737

3838
# Build Ruby 2.1
39-
rake-compiler cross-ruby VERSION=2.1.4 HOST=i686-w64-mingw32 debugflags="-g"
39+
rake-compiler cross-ruby VERSION=2.1.6 HOST=i686-w64-mingw32 debugflags="-g"
4040

4141
# Build x64 Ruby 2.1
42-
rake-compiler cross-ruby VERSION=2.1.4 HOST=x86_64-w64-mingw32 debugflags="-g"
42+
rake-compiler cross-ruby VERSION=2.1.6 HOST=x86_64-w64-mingw32 debugflags="-g"
43+
44+
# Build Ruby 2.2 using 2.0.0 as base
45+
rvm use 2.0.0
46+
rake-compiler cross-ruby VERSION=2.2.2 HOST=i686-w64-mingw32 debugflags="-g"
47+
48+
# Build x64 Ruby 2.2
49+
rake-compiler cross-ruby VERSION=2.2.2 HOST=x86_64-w64-mingw32 debugflags="-g"
4350

4451
# Mark installation prepared and don't run all this again
4552
touch "$HOME/.rake-compiler/.prepared"

bootstrap.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ $as_vagrant 'rvm install 1.8.7-p374'
7878
$as_vagrant 'rvm install 1.9.3'
7979
$as_vagrant 'rvm install 2.0.0'
8080
$as_vagrant 'rvm install 2.1'
81+
$as_vagrant 'rvm install 2.2'
8182

8283
# add /vagrant/bin to the PATH
8384
if ! grep -q "/vagrant/bin" $home/.bash_profile; then

0 commit comments

Comments
 (0)