Skip to content

Commit

Permalink
Remove EOL ruby versions
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermef committed Jan 24, 2022
1 parent 0bb638d commit 1bdaed3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 31 deletions.
37 changes: 12 additions & 25 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,18 @@
# - '2.1'
# - '2.2'
# - '2.3'
# - '2.4'
# - '2.5'
# - 'ruby-head'
# - 'jruby'

version: 2
workflows:
version: 2
test:
jobs:
- test-2.1
- test-2.2
- test-2.3
- test-2.4
- test-2.5
- test-2.6
- test-2.7
- test-3.0
- test-3.1
- test-jruby
- test-latest
jobs:
test-2.1: &test-template
test-2.6: &test-template
docker:
- image: circleci/ruby:2.1
- image: circleci/ruby:2.6
working_directory: ~/repo
steps:
- checkout
Expand All @@ -37,22 +28,18 @@ jobs:
--format progress
- store_test_results:
path: test_results
test-2.2:
test-2.7:
<<: *test-template
docker:
- image: circleci/ruby:2.2
test-2.3:
- image: circleci/ruby:2.7
test-3.0:
<<: *test-template
docker:
- image: circleci/ruby:2.3
test-2.4:
- image: circleci/ruby:3.0
test-3.1:
<<: *test-template
docker:
- image: circleci/ruby:2.4
test-2.5:
<<: *test-template
docker:
- image: circleci/ruby:2.5
- image: circleci/ruby:3.1
test-jruby:
<<: *test-template
docker:
Expand Down
10 changes: 4 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@ cache:
- vendor/bundle
sudo: false
rvm:
- '1.9'
- '2.1'
- '2.2'
- '2.3'
- '2.4'
- '2.5'
- '2.6'
- '2.7'
- '3.0'
- '3.1'
- 'ruby-head'
- 'jruby'

Expand Down

0 comments on commit 1bdaed3

Please sign in to comment.