Skip to content

Add arch support for ruby 3.4.1 #757

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
6 changes: 4 additions & 2 deletions al/aarch64/standard/3.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -290,11 +290,13 @@ RUN n $NODE_18_VERSION && npm install --save-dev -g -f grunt \
ENV RUBY_31_VERSION="3.1.6"
ENV RUBY_32_VERSION="3.2.4"
ENV RUBY_33_VERSION="3.3.2"
ENV RUBY_34_VERSION="3.4.1"

RUN rbenv install $RUBY_33_VERSION \
RUN rbenv install $RUBY_34_VERSION \
&& rbenv install $RUBY_33_VERSION \
&& rbenv install $RUBY_32_VERSION \
&& rbenv install $RUBY_31_VERSION \
&& rbenv global $RUBY_32_VERSION && ruby -v \
&& rbenv global $RUBY_34_VERSION && ruby -v \
&& rm -rf /tmp/*

#**************** END RUBY *****************************************************
6 changes: 5 additions & 1 deletion al/aarch64/standard/3.0/runtimes.yml
Original file line number Diff line number Diff line change
@@ -146,6 +146,10 @@ runtimes:
- phpenv global $VERSION
ruby:
versions:
3.4:
commands:
- echo "Installing Ruby version 3.4 ..."
- rbenv global $RUBY_34_VERSION
3.3:
commands:
- echo "Installing Ruby version 3.3 ..."
@@ -200,4 +204,4 @@ runtimes:
commands:
- echo "Installing custom .Net version $VERSION ..."
- /usr/local/bin/dotnet-install.sh -v $VERSION && rm -rf /tmp/*
- test -f "global.json" && echo "Using provided global.json" || dotnet new globaljson --sdk-version $VERSION --roll-forward feature
- test -f "global.json" && echo "Using provided global.json" || dotnet new globaljson --sdk-version $VERSION --roll-forward feature