Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/publish-new-image-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
fail-fast: false
matrix:
RUBY_VERSION:
- 3.4.7
- 3.4.6
- 3.4.5
- 3.4.4
Expand Down
2 changes: 1 addition & 1 deletion features/src/ruby/devcontainer-feature.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"options": {
"version": {
"type": "string",
"default": "3.4.6",
"default": "3.4.7",
"description": "The ruby version to be installed"
},
"versionManager": {
Expand Down
2 changes: 1 addition & 1 deletion features/test/ruby/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ check "mise is installed" bash -c "mise --version"
check "mise init is sourced in the bashrc" bash -c "grep 'eval \"\$(~/.local/bin/mise activate bash)\"' $HOME/.bashrc"
check "mise idiomatic version file is enabled for ruby" bash -c "mise settings | grep idiomatic_version_file_enable_tools | grep ruby"
check "Ruby is installed with YJIT" bash -c "RUBY_YJIT_ENABLE=1 ruby -v | grep +YJIT"
check "Ruby version is set to 3.4.6" bash -c "mise use -g ruby | grep 3.4.6"
check "Ruby version is set to 3.4.7" bash -c "mise use -g ruby | grep 3.4.7"

reportResults
2 changes: 1 addition & 1 deletion features/test/ruby/with_rbenv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ check "rbenv is installed" bash -c "rbenv --version"
check "ruby-build is installed" bash -c "ls -l $HOME/.rbenv/plugins/ruby-build | grep '\-> /usr/local/share/ruby-build'"
eval "$(rbenv init -)"
check "Ruby is installed with YJIT" bash -c "RUBY_YJIT_ENABLE=1 ruby -v | grep +YJIT"
check "Ruby version is set to 3.4.6" bash -c "rbenv global | grep 3.4.6"
check "Ruby version is set to 3.4.7" bash -c "rbenv global | grep 3.4.7"

reportResults