Skip to content

Commit 0f772dd

Browse files
committed
Add Ruby 3.3.9
1 parent 3c101c2 commit 0f772dd

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

.github/workflows/publish-new-image-version.yaml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
name: Build and Publish Images
2-
3-
on:
2+
"on":
43
push:
5-
tags: [ 'ruby-*.*.*' ]
6-
4+
tags:
5+
- ruby-*.*.*
76
jobs:
87
build:
98
name: Build Images
10-
119
strategy:
1210
fail-fast: false
1311
matrix:
@@ -18,6 +16,7 @@ jobs:
1816
- 3.4.2
1917
- 3.4.1
2018
- 3.4.0
19+
- 3.3.9
2120
- 3.3.8
2221
- 3.3.7
2322
- 3.3.6
@@ -36,15 +35,13 @@ jobs:
3635
- 3.2.2
3736
- 3.2.1
3837
- 3.2.0
39-
4038
runs-on: ubuntu-latest
4139
permissions:
4240
contents: read
4341
packages: write
4442
steps:
4543
- name: Checkout (GitHub)
4644
uses: actions/checkout@v4
47-
4845
- name: Build and Publish Image
4946
uses: ./.github/actions/build-and-publish-image
5047
with:

features/test/ruby/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ check "mise is installed" bash -c "mise --version"
88
check "mise init is sourced in the bashrc" bash -c "grep 'eval \"\$(~/.local/bin/mise activate bash)\"' $HOME/.bashrc"
99
check "mise idiomatic version file is enabled for ruby" bash -c "mise settings | grep idiomatic_version_file_enable_tools | grep ruby"
1010
check "Ruby is installed with YJIT" bash -c "RUBY_YJIT_ENABLE=1 ruby -v | grep +YJIT"
11-
check "Ruby version is set to 3.4.5" bash -c "mise use -g ruby | grep 3.4.5"
11+
check "Ruby version is set to 3.3.9" bash -c "mise use -g ruby | grep 3.3.9"
1212

1313
reportResults

features/test/ruby/with_rbenv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ check "rbenv is installed" bash -c "rbenv --version"
99
check "ruby-build is installed" bash -c "ls -l $HOME/.rbenv/plugins/ruby-build | grep '\-> /usr/local/share/ruby-build'"
1010
eval "$(rbenv init -)"
1111
check "Ruby is installed with YJIT" bash -c "RUBY_YJIT_ENABLE=1 ruby -v | grep +YJIT"
12-
check "Ruby version is set to 3.4.5" bash -c "rbenv global | grep 3.4.5"
12+
check "Ruby version is set to 3.3.9" bash -c "rbenv global | grep 3.3.9"
1313

1414
reportResults

0 commit comments

Comments
 (0)