File tree 3 files changed +7
-9
lines changed
3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -15,20 +15,19 @@ jobs:
15
15
fail-fast : false
16
16
matrix :
17
17
ruby :
18
- - 2.7.8
19
18
- 3.0.6
20
19
- 3.1.4
21
20
- 3.2.2
22
21
- jruby-9.3.10.0
23
- - jruby-9.4.2 .0
24
- - truffleruby-22.3.1
22
+ - jruby-9.4.3 .0
23
+ - truffleruby-23.0.0
25
24
os :
26
25
- ubuntu-latest
27
26
- macos-latest
28
27
- windows-latest
29
28
exclude :
30
29
- os : windows-latest
31
- ruby : truffleruby-22.3.1
30
+ ruby : truffleruby-23.0.0
32
31
defaults :
33
32
run :
34
33
working-directory : examples/gem
Original file line number Diff line number Diff line change @@ -24,10 +24,9 @@ The following toolchains are known to work and tested on CI.
24
24
| MRI 3.2 | 🟩 | 🟩 | 🟩 |
25
25
| MRI 3.1 | 🟩 | 🟩 | 🟩 |
26
26
| MRI 3.0 | 🟩 | 🟩 | 🟩 |
27
- | MRI 2.7 | 🟩 | 🟩 | 🟩 |
28
27
| JRuby 9.4 | 🟩 | 🟩 | 🟩 |
29
28
| JRuby 9.3 | 🟩 | 🟩 | 🟩 |
30
- | TruffleRuby 22.3 | 🟩 | 🟩 | 🟥 |
29
+ | TruffleRuby 23.0 | 🟩 | 🟩 | 🟥 |
31
30
32
31
### MRI
33
32
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def rb_register_toolchains(version = None, **kwargs):
34
34
def _rb_toolchain_repository_proxy_impl (repository_ctx ):
35
35
repository_ctx .file (
36
36
"WORKSPACE" ,
37
- """workspace(name = "{}")""" .format (repository_ctx .name )
37
+ """workspace(name = "{}")""" .format (repository_ctx .name ),
38
38
)
39
39
40
40
build_file_template = """
@@ -64,7 +64,7 @@ rb_toolchain_repository_proxy = repository_rule(
64
64
doc = (
65
65
"A proxy repository that contains the toolchain declaration; this indirection " +
66
66
"allows the Ruby toolchain to be downloaded lazily."
67
- )
67
+ ),
68
68
)
69
69
70
70
def _rb_download_impl (repository_ctx ):
@@ -165,7 +165,7 @@ Ruby version to install.
165
165
""" ,
166
166
),
167
167
"ruby_build_version" : attr .string (
168
- default = "20230428 " ,
168
+ default = "20230717 " ,
169
169
doc = """
170
170
Version of [ruby-build](https://github.com/rbenv/ruby-build/releases)
171
171
to install. You normally don't need to change this, unless `version` you pass is a new one
You can’t perform that action at this time.
0 commit comments