Skip to content

Commit

Permalink
Drop ruby 2.2 support (#759)
Browse files Browse the repository at this point in the history
* Lock all files to proper parallel_tests version

* Drop ruby 2.2 support

It's EoL and cucumber 4 does not support it.

* Maybe this is no longer needed
  • Loading branch information
deivid-rodriguez committed Jun 4, 2020
1 parent c40b34b commit 1c8761a
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 10 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/windows.yml
Expand Up @@ -8,18 +8,13 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [2.7, 2.6, 2.5, 2.4, 2.3, 2.2]
ruby: [2.7, 2.6, 2.5, 2.4, 2.3]
steps:
- uses: actions/checkout@master
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Update MSYS2
uses: MSP-Greg/msys2-action@master
with:
base: update
mingw: sqlite3
- name: Install dependencies
run: |
ruby -e "Dir['{,spec/**/}Gemfile.lock'].each { |f| File.write(f, File.read(f).split('BUNDLED WITH').first)}"
Expand Down
1 change: 0 additions & 1 deletion .travis.yml
@@ -1,7 +1,6 @@
env:
- RUBYOPT=-W0
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
Expand Down
2 changes: 1 addition & 1 deletion parallel_tests.gemspec
Expand Up @@ -16,5 +16,5 @@ Gem::Specification.new name, ParallelTests::VERSION do |s|
s.license = "MIT"
s.executables = ["parallel_spinach", "parallel_cucumber", "parallel_rspec", "parallel_test"]
s.add_runtime_dependency "parallel"
s.required_ruby_version = '>= 2.2.0'
s.required_ruby_version = '>= 2.3.0'
end
2 changes: 1 addition & 1 deletion spec/fixtures/rails51/Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: ../../..
specs:
parallel_tests (2.31.0)
parallel_tests (2.32.0)
parallel

GEM
Expand Down
2 changes: 1 addition & 1 deletion spec/fixtures/rails52/Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: ../../..
specs:
parallel_tests (2.31.0)
parallel_tests (2.32.0)
parallel

GEM
Expand Down

0 comments on commit 1c8761a

Please sign in to comment.