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

Updating Ruby and Jekyll versions for testing #290

Merged
merged 5 commits into from Jan 17, 2017
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 2 additions & 6 deletions .travis.yml
Expand Up @@ -2,18 +2,14 @@ language: ruby
rvm:
- 2.2
- 2.1
- 2.0
matrix:
include:
- # Ruby 1.9
rvm: 1.9
env: JEKYLL_VERSION=2.0
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
matrix:
- JEKYLL_VERSION=3.3
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think Bundler actually resolves 3.0 to the latest 3.x version, as can be seen here

- JEKYLL_VERSION=3.0
- JEKYLL_VERSION=2.5
- JEKYLL_VERSION=2.0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a reason to support Jekyll 2.0?
You could probably even drop Jekyll 2.5 at this point.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was trying to find what Jekyll versions were being supported. I guess now 3.x is up to 3.3, the 2.x branch is probably dead? Should be tested for legacy users I suppose...

Does 2.5 uses the 2.5.3 release?

cache: bundler
sudo: false
before_script: bundle update
Expand Down