Skip to content

Commit

Permalink
stops testing and supporting EOL'd Ruby 2.7 (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
tisba committed May 26, 2023
1 parent 010c3ea commit 46fe327
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,9 @@ jobs:
- "macos-11"
- "macos-12"
ruby:
- "ruby-2.6"
- "ruby-2.7"
- "ruby-3.0"
- "ruby-3.1"
- "ruby-3.2"

name: ${{ matrix.os }} - ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}
Expand All @@ -69,10 +68,9 @@ jobs:
fail-fast: false
matrix:
ruby:
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "3.2"
platform:
- "amd64"
- "arm64"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG RUBY_VERSION=2.7
ARG RUBY_VERSION=3.2
FROM ruby:${RUBY_VERSION}

RUN test ! -f /etc/alpine-release || apk add --no-cache build-base git
Expand Down
2 changes: 1 addition & 1 deletion mini_racer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ Gem::Specification.new do |spec|

spec.extensions = ["ext/mini_racer_loader/extconf.rb", "ext/mini_racer_extension/extconf.rb"]

spec.required_ruby_version = '>= 2.6'
spec.required_ruby_version = '>= 3.0'
end

0 comments on commit 46fe327

Please sign in to comment.