From c23524834ddc942b2f2bdfeafc60725db1b273e9 Mon Sep 17 00:00:00 2001 From: Jeremiah Parrack Date: Fri, 7 Feb 2025 14:38:19 -0500 Subject: [PATCH] Add arch support for ruby 3.4.1 --- al/aarch64/standard/3.0/Dockerfile | 6 ++++-- al/aarch64/standard/3.0/runtimes.yml | 6 +++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/al/aarch64/standard/3.0/Dockerfile b/al/aarch64/standard/3.0/Dockerfile index 05f4e07b..d91333df 100644 --- a/al/aarch64/standard/3.0/Dockerfile +++ b/al/aarch64/standard/3.0/Dockerfile @@ -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 ***************************************************** diff --git a/al/aarch64/standard/3.0/runtimes.yml b/al/aarch64/standard/3.0/runtimes.yml index 6bd8e920..2814ea39 100644 --- a/al/aarch64/standard/3.0/runtimes.yml +++ b/al/aarch64/standard/3.0/runtimes.yml @@ -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 \ No newline at end of file + - test -f "global.json" && echo "Using provided global.json" || dotnet new globaljson --sdk-version $VERSION --roll-forward feature