File tree Expand file tree Collapse file tree 1 file changed +48
-9
lines changed Expand file tree Collapse file tree 1 file changed +48
-9
lines changed Original file line number Diff line number Diff line change 1
1
version : 2.1
2
- orbs :
3
- ruby : circleci/ruby@0.1.2
4
2
5
3
jobs :
6
- build :
4
+ build_ruby_2_6 :
7
5
docker :
8
- - image : circleci/ruby:2.6.3-stretch-node
9
- executor : ruby/default
6
+ - image : ' cimg/ruby:2.6'
10
7
steps :
11
8
- checkout
12
- - run :
13
- name : Which bundler?
14
- command : bundle -v
15
- - ruby/bundle-install
9
+ - run : ' bundle install'
10
+ - run : ' ./test/test_git-status-tree'
11
+ build_ruby_2_7 :
12
+ docker :
13
+ - image : ' cimg/ruby:2.7'
14
+ steps :
15
+ - checkout
16
+ - run : ' bundle install'
17
+ - run : ' ./test/test_git-status-tree'
18
+ build_ruby_3_0 :
19
+ docker :
20
+ - image : ' cimg/ruby:3.0'
21
+ steps :
22
+ - checkout
23
+ - run : ' bundle install'
24
+ - run : ' ./test/test_git-status-tree'
25
+ build_ruby_3_1 :
26
+ docker :
27
+ - image : ' cimg/ruby:3.1'
28
+ steps :
29
+ - checkout
30
+ - run : ' bundle install'
31
+ - run : ' ./test/test_git-status-tree'
32
+ build_ruby_3_2 :
33
+ docker :
34
+ - image : ' cimg/ruby:3.2'
35
+ steps :
36
+ - checkout
37
+ - run : ' bundle install'
38
+ - run : ' ./test/test_git-status-tree'
39
+ workflows :
40
+ build_ruby_2_6 :
41
+ jobs :
42
+ - build_ruby_2_6
43
+ build_ruby_2_7 :
44
+ jobs :
45
+ - build_ruby_2_7
46
+ build_ruby_3_0 :
47
+ jobs :
48
+ - build_ruby_3_0
49
+ build_ruby_3_1 :
50
+ jobs :
51
+ - build_ruby_3_1
52
+ build_ruby_3_2 :
53
+ jobs :
54
+ - build_ruby_3_2
You can’t perform that action at this time.
0 commit comments