Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Ruby 2.7 and 3.0 to travis-ci test matrix #160

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
language: ruby

bundler_args: "--binstubs --standalone --without documentation --path ../bundle"

script: "bundle exec rake test"
script: "bundle _1.17.3_ exec rake test"

before_install:
- rvm @global do gem uninstall bundler -x
- gem install bundler --version '< 2'
- gem install bundler --version '1.17.3'

install: bundle _1.17.3_ install --binstubs --standalone --without documentation --path ../bundle

gemfile:
- gemfiles/sprockets-rails_3_0.gemfile
Expand All @@ -21,6 +20,8 @@ rvm:
- 2.4.6
- 2.5.5
- 2.6.3
- 2.7
- 3.0
- jruby

matrix:
Expand All @@ -32,6 +33,12 @@ matrix:
exclude:
- gemfile: gemfiles/rails_6_0.gemfile
rvm: 2.4.6
- gemfile: gemfiles/rails_4_2.gemfile
rvm: 2.7
- gemfile: gemfiles/rails_4_2.gemfile
rvm: 3.0
- gemfile: gemfiles/rails_5_2.gemfile
rvm: 3.0

notifications:
email: false
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SassC::Rails [![Build Status](https://travis-ci.org/sass/sassc-rails.svg)](https://travis-ci.org/sass/sassc-rails) [![Gem Version](https://badge.fury.io/rb/sassc-rails.svg)](http://badge.fury.io/rb/sassc-rails)
# SassC::Rails [![Build Status](https://travis-ci.com/sass/sassc-rails.svg)](https://travis-ci.com/sass/sassc-rails) [![Gem Version](https://badge.fury.io/rb/sassc-rails.svg)](http://badge.fury.io/rb/sassc-rails)

We all love working with Sass, but compilation can take quite a long time for larger
codebases. This gem integrates the C implementation of Sass,
Expand Down