From de5da7d29dfe487e99306ff09218dc6a686be3e2 Mon Sep 17 00:00:00 2001 From: Florian Frank Date: Sat, 22 Jun 2024 12:50:12 +0200 Subject: [PATCH] Allow testing on ancient rubies, sigh --- .all_images.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.all_images.yml b/.all_images.yml index 8291307..25b8f57 100644 --- a/.all_images.yml +++ b/.all_images.yml @@ -1,7 +1,15 @@ dockerfile: |- - RUN apk add --no-cache build-base git - RUN gem update --system - RUN gem install gem_hadar bundler + RUN apk add --no-cache build-base git bash + RUN bash < '3' ]] + then + gem update --system + gem install gem_hadar bundler + else + gem install gem_hadar + gem install bundler -v 2.4.22 + fi + NUR script: &script |- echo -e "\e[1m" @@ -15,3 +23,5 @@ images: ruby:3.2-alpine: *script ruby:3.1-alpine: *script ruby:3.0-alpine: *script + ruby:2.7-alpine: *script + ruby:2.6-alpine: *script