Skip to content

Commit 7555eda

Browse files
committed
Add all_images gem for local testing
1 parent 75ada77 commit 7555eda

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.all_images.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
dockerfile: |-
2+
RUN apk add --no-cache build-base git ragel
3+
RUN gem update --system
4+
RUN gem install gem_hadar bundler
5+
script: &script |-
6+
echo -e "\e[1m"
7+
ruby -v
8+
echo -e "\e[0m"
9+
bundle
10+
rake clean test
11+
12+
images:
13+
ruby:3.1-alpine: *script
14+
ruby:3.0-alpine: *script
15+
ruby:2.7-alpine: *script
16+
ruby:2.6-alpine: *script
17+
ruby:2.5-alpine: *script

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ end
1515

1616
gem "rake"
1717
gem "test-unit"
18+
gem "all_images"

0 commit comments

Comments
 (0)