Skip to content

Commit 655143b

Browse files
authored
Update to currently supported ruby versions (#323)
* Update to currently supported ruby versions * Fix the circle yml * Change to always test the latest releases of 2.4, 2.5, 2.6
1 parent 4b129ba commit 655143b

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.circleci/config.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ jobs:
33
test_fresh_install_rails_5_2_3:
44
parallelism: 2
55
docker:
6-
- image: circleci/ruby:2.6.3
6+
- image: circleci/ruby:2.6
77
environment:
88
RAILS_ENV: test
99
RACK_ENV: test
@@ -21,9 +21,9 @@ jobs:
2121
command: |
2222
cd test/rails-tests/
2323
sh rails523.sh
24-
test_ruby_2_4_6:
24+
test_ruby_2_4:
2525
docker:
26-
- image: circleci/ruby:2.4.6
26+
- image: circleci/ruby:2.4
2727
environment:
2828
RAILS_ENV: test
2929
RACK_ENV: test
@@ -61,9 +61,9 @@ jobs:
6161
path: test/reports/
6262
- store_test_results:
6363
path: test/reports/
64-
test_ruby_2_5_4:
64+
test_ruby_2_5:
6565
docker:
66-
- image: circleci/ruby:2.5.4
66+
- image: circleci/ruby:2.5
6767
environment:
6868
RAILS_ENV: test
6969
RACK_ENV: test
@@ -101,9 +101,9 @@ jobs:
101101
path: test/reports/
102102
- store_test_results:
103103
path: test/reports/
104-
test_ruby_2_6_3:
104+
test_ruby_2_6:
105105
docker:
106-
- image: circleci/ruby:2.6.3
106+
- image: circleci/ruby:2.6
107107
environment:
108108
RAILS_ENV: test
109109
RACK_ENV: test
@@ -145,7 +145,7 @@ workflows:
145145
version: 2
146146
test:
147147
jobs:
148-
- test_ruby_2_4_6
149-
- test_ruby_2_5_4
150-
- test_ruby_2_6_3
148+
- test_ruby_2_4
149+
- test_ruby_2_5
150+
- test_ruby_2_6
151151
- test_fresh_install_rails_5_2_3

0 commit comments

Comments
 (0)