Skip to content

Commit 81fe82f

Browse files
tnirsagor999
authored andcommitted
Add ruby-3.2 image and update ruby-3 from 3.1.2 to 3.2.0
Signed-off-by: Takuya Noguchi <[email protected]>
1 parent bce5124 commit 81fe82f

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

.github/promote-images.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
workspace-ruby-3: "20.*"
2525
workspace-ruby-3.0: "20.*"
2626
workspace-ruby-3.1: "20.*"
27+
workspace-ruby-3.2: "20.*"
2728
workspace-rust: "20.*"
2829
workspace-dotnet: "20.*"
2930
workspace-postgres: "20.*"

.github/sync-containers.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ sync:
2121
- ruby-3
2222
- ruby-3.0
2323
- ruby-3.1
24+
- ruby-3.2
2425
- rust
2526
- dotnet
2627
- postgres

chunks/lang-ruby/chunk.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@ variants:
88
- name: "3.1"
99
args:
1010
RUBY_VERSION: 3.1.2
11+
- name: "3.2"
12+
args:
13+
RUBY_VERSION: 3.2.0

dazzle.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,16 +103,21 @@ combiner:
103103
- base
104104
chunks:
105105
- lang-ruby:3.0
106-
- name: ruby-3
106+
- name: ruby-3.1
107107
ref:
108108
- base
109109
chunks:
110110
- lang-ruby:3.1
111-
- name: ruby-3.1
111+
- name: ruby-3.2
112112
ref:
113113
- base
114114
chunks:
115-
- lang-ruby:3.1
115+
- lang-ruby:3.2
116+
- name: ruby-3
117+
ref:
118+
- base
119+
chunks:
120+
- lang-ruby:3.2
116121
- name: rust
117122
ref:
118123
- base

tests/lang-ruby.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
- stdout.indexOf("ruby") != -1
77
- stdout.indexOf("2.7.6") != -1 ||
88
stdout.indexOf("3.0.4") != -1 ||
9-
stdout.indexOf("3.1.2") != -1
9+
stdout.indexOf("3.1.2") != -1 ||
10+
stdout.indexOf("3.2.0") != -1
1011
- desc: it should have rvm
1112
command: [rvm --version]
1213
entrypoint: [bash, -i, -c]

0 commit comments

Comments
 (0)