rake-compiler-dock 1.6.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +12 -4
- data/Dockerfile.mri.erb +3 -3
- data/History.md +17 -3
- data/lib/rake_compiler_dock/version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d4bd88acec0b242f927021220f31a29ba3b6d2430684939cca547f166a2e4cbf
|
|
4
|
+
data.tar.gz: 93bc3f64149ddde490bc346ada8fc8ad08d1a726d7a1d0a30e7fac53de796c35
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a6cc4bab3dab8d51451f3a813252c37118c946d5de6d484ba3a352780c2303ea90c2db0dc4d8f9e67164a3ac4f47f5a8ca5f9198ff2c145b41811f374bff079
|
|
7
|
+
data.tar.gz: c2feaa279b28ef3b4b058f86a6ac37df9dd7356d3f8c119bba279689460e981d008424af5272d5287064f8b4322b2fb7a7d9aba5cd66ccdd8fe855261cf13a78
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -144,7 +144,7 @@ jobs:
|
|
|
144
144
|
fail-fast: false
|
|
145
145
|
matrix:
|
|
146
146
|
os: [ubuntu-latest]
|
|
147
|
-
ruby: ["3.3", "3.2", "3.1", "3.0", "2.7", "2.6", "2.5", "2.4"]
|
|
147
|
+
ruby: ["3.4.0-rc1", "3.3", "3.2", "3.1", "3.0", "2.7", "2.6", "2.5", "2.4"]
|
|
148
148
|
runs-on: ${{ matrix.os }}
|
|
149
149
|
steps:
|
|
150
150
|
- uses: actions/checkout@v4
|
|
@@ -169,9 +169,10 @@ jobs:
|
|
|
169
169
|
fail-fast: false
|
|
170
170
|
matrix:
|
|
171
171
|
platform: [x86_64-linux, x86_64-linux-gnu]
|
|
172
|
-
ruby: ["3.3", "3.2", "3.1", "3.0", "2.7", "2.6", "2.5", "2.4"]
|
|
172
|
+
ruby: ["3.4.0-rc1", "3.3", "3.2", "3.1", "3.0", "2.7", "2.6", "2.5", "2.4"]
|
|
173
173
|
include:
|
|
174
174
|
# declare rubygems for each ruby version
|
|
175
|
+
- { ruby: "3.0", rubygems: "3.5.23" }
|
|
175
176
|
- { ruby: "2.7", rubygems: "3.4.22" }
|
|
176
177
|
- { ruby: "2.6", rubygems: "3.4.22" }
|
|
177
178
|
- { ruby: "2.5", rubygems: "3.3.26" }
|
|
@@ -213,9 +214,10 @@ jobs:
|
|
|
213
214
|
- x86_64-linux
|
|
214
215
|
- x86_64-linux-gnu
|
|
215
216
|
- x86_64-linux-musl
|
|
216
|
-
ruby: ["3.3", "3.2", "3.1", "3.0", "2.7", "2.6", "2.5", "2.4"]
|
|
217
|
+
ruby: ["3.4.0-rc1", "3.3", "3.2", "3.1", "3.0", "2.7", "2.6", "2.5", "2.4"]
|
|
217
218
|
include:
|
|
218
219
|
# declare rubygems for each ruby version
|
|
220
|
+
- { ruby: "3.0", rubygems: "3.5.23" }
|
|
219
221
|
- { ruby: "2.7", rubygems: "3.4.22" }
|
|
220
222
|
- { ruby: "2.6", rubygems: "3.4.22" }
|
|
221
223
|
- { ruby: "2.5", rubygems: "3.3.26" }
|
|
@@ -262,7 +264,7 @@ jobs:
|
|
|
262
264
|
fail-fast: false
|
|
263
265
|
matrix:
|
|
264
266
|
os: [macos-13, macos-14]
|
|
265
|
-
ruby: ["3.3", "3.2", "3.1", "3.0", "2.7", "2.6", "2.5", "2.4"]
|
|
267
|
+
ruby: ["3.4.0-rc1", "3.3", "3.2", "3.1", "3.0", "2.7", "2.6", "2.5", "2.4"]
|
|
266
268
|
exclude:
|
|
267
269
|
# setup-ruby does not provide ruby 2.4 or 2.5 on arm64-darwin as of 2024-05-01
|
|
268
270
|
- os: macos-14
|
|
@@ -301,6 +303,9 @@ jobs:
|
|
|
301
303
|
- os: windows-latest
|
|
302
304
|
ruby: "3.3"
|
|
303
305
|
platform: x64-mingw-ucrt
|
|
306
|
+
- os: windows-latest
|
|
307
|
+
ruby: "head" # "3.4.0-rc1" not available yet on windows
|
|
308
|
+
platform: x64-mingw-ucrt
|
|
304
309
|
runs-on: ${{ matrix.os }}
|
|
305
310
|
steps:
|
|
306
311
|
- uses: actions/checkout@v4
|
|
@@ -353,6 +358,9 @@ jobs:
|
|
|
353
358
|
- os: windows-latest
|
|
354
359
|
ruby: "3.3"
|
|
355
360
|
platform: x64-mingw-ucrt
|
|
361
|
+
- os: windows-latest
|
|
362
|
+
ruby: "head" # "3.4.0-rc1" not available yet on windows
|
|
363
|
+
platform: x64-mingw-ucrt
|
|
356
364
|
runs-on: ${{ matrix.os }}
|
|
357
365
|
steps:
|
|
358
366
|
- uses: actions/checkout@v4
|
data/Dockerfile.mri.erb
CHANGED
|
@@ -110,7 +110,7 @@ RUN sudo mkdir -p /usr/local/rake-compiler && \
|
|
|
110
110
|
xrubies_build_plan = if platform =~ /x64-mingw-ucrt/
|
|
111
111
|
[
|
|
112
112
|
# Rubyinstaller-3.1.0+ is platform x64-mingw-ucrt
|
|
113
|
-
["3.3.5:3.2.0:3.1.0", "3.1.3"],
|
|
113
|
+
["3.4.0:3.3.5:3.2.0:3.1.0", "3.1.3"],
|
|
114
114
|
]
|
|
115
115
|
elsif platform =~ /x64-mingw32/
|
|
116
116
|
[
|
|
@@ -121,7 +121,7 @@ elsif platform =~ /x64-mingw32/
|
|
|
121
121
|
else
|
|
122
122
|
[
|
|
123
123
|
["2.6.0:2.5.0:2.4.0", "2.5.9"],
|
|
124
|
-
["3.3.5:3.2.0:3.1.0:3.0.0:2.7.0", "3.1.3"],
|
|
124
|
+
["3.4.0:3.3.5:3.2.0:3.1.0:3.0.0:2.7.0", "3.1.3"],
|
|
125
125
|
]
|
|
126
126
|
end
|
|
127
127
|
|
|
@@ -217,6 +217,6 @@ COPY build/sudoers /etc/sudoers.d/rake-compiler-dock
|
|
|
217
217
|
|
|
218
218
|
RUN bash -c "rbenv global 3.1.3"
|
|
219
219
|
|
|
220
|
-
ENV RUBY_CC_VERSION=3.3.5:3.2.0:3.1.0:3.0.0:2.7.0:2.6.0:2.5.0:2.4.0
|
|
220
|
+
ENV RUBY_CC_VERSION=3.4.0:3.3.5:3.2.0:3.1.0:3.0.0:2.7.0:2.6.0:2.5.0:2.4.0
|
|
221
221
|
|
|
222
222
|
CMD bash
|
data/History.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# `rake-compiler/rake-compiler-dock` Changelog
|
|
2
2
|
|
|
3
|
+
## v1.7.0 / 2024-12-25
|
|
4
|
+
|
|
5
|
+
### Ruby 3.4 support
|
|
6
|
+
|
|
7
|
+
- Add Ruby 3.4.0 cross-compilation support.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## v1.7.0.rc1 / 2024-12-13
|
|
11
|
+
|
|
12
|
+
### Ruby 3.4 support
|
|
13
|
+
|
|
14
|
+
- Add Ruby 3.4.0-rc1 cross-compilation support.
|
|
15
|
+
|
|
16
|
+
|
|
3
17
|
## v1.6.0 / 2024-12-13
|
|
4
18
|
|
|
5
19
|
### Notable changes
|
|
@@ -11,16 +25,16 @@ In this release, we upgraded the base image for the `x86_64-linux-gnu` and `x86-
|
|
|
11
25
|
⚠ **Note** there are two important changes due to this upgrade:
|
|
12
26
|
|
|
13
27
|
1. The minimum supported version of GLIBC for the `x86*-linux-gnu` images has increased from 2.17 to 2.29 for `x86_64` and `x86` architectures. (Note that GLIBC was already pinned to 2.29 for ARM architectures.)
|
|
14
|
-
2. Precompiled gems built with the `x86*linux-gnu` images are less likely to be compatible with Musl
|
|
28
|
+
2. Precompiled gems built with the `x86*linux-gnu` images are less likely to be compatible with Musl libc, and may segfault when run on Musl systems.
|
|
15
29
|
|
|
16
30
|
For (2) above, if you have been shipping a single `x86_64-linux` native gem for both GNU and Musl systems, **please make sure you test your gems on a Musl system before shipping them**. See the [actions workflow in flavorjones/ruby-c-extensions-explained](https://github.com/flavorjones/ruby-c-extensions-explained/blob/6619a0d94e627897838a79144704387db65a03bc/.github/workflows/precompiled.yml#L137) for an example of how to do this rigorously.
|
|
17
31
|
|
|
18
32
|
|
|
19
|
-
|
|
33
|
+
#### Ruby 3.3 support upgraded to `3.3.5`
|
|
20
34
|
|
|
21
35
|
Update Ruby 3.3 support from 3.3.0-rc1 to 3.3.5. Note that the 3.3.x releases are not usable until 3.3.5 because of https://bugs.ruby-lang.org/issues/20088.
|
|
22
36
|
|
|
23
|
-
⚠ **Note** that if you were specifying `3.3.0` in your `RUBY_CC_VERSION` environment variable, that string
|
|
37
|
+
⚠ **Note** that if you were specifying `3.3.0` in your `RUBY_CC_VERSION` environment variable, that string must be updated to `3.3.5`.
|
|
24
38
|
|
|
25
39
|
|
|
26
40
|
### Added
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rake-compiler-dock
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lars Kanis
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-12-
|
|
11
|
+
date: 2024-12-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -140,7 +140,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
140
140
|
- !ruby/object:Gem::Version
|
|
141
141
|
version: '0'
|
|
142
142
|
requirements: []
|
|
143
|
-
rubygems_version: 3.
|
|
143
|
+
rubygems_version: 3.4.10
|
|
144
144
|
signing_key:
|
|
145
145
|
specification_version: 4
|
|
146
146
|
summary: Easy to use and reliable cross compiler environment for building Windows
|