Skip to content

Commit c552b8e

Browse files
committed
Conditionally load GFM parser in CI builds
1 parent f6bad6d commit c552b8e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77
global:
88
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
99
matrix:
10-
- JEKYLL_VERSION="~> 3.8"
10+
- JEKYLL_VERSION="~> 3.9"
1111
matrix:
1212
include:
1313
- rvm: *latest_ruby

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ source "https://rubygems.org"
44
gemspec
55

66
gem "jekyll", ENV["JEKYLL_VERSION"] if ENV["JEKYLL_VERSION"]
7+
gem "kramdown-parser-gfm" if ENV["JEKYLL_VERSION"] == "~> 3.9"
78

89
install_if -> { Gem.win_platform? } do
910
gem "tzinfo", "~> 1.2"

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ build: off
44

55
environment:
66
NOKOGIRI_USE_SYSTEM_LIBRARIES: true
7-
JEKYLL_VERSION: "~> 3.8"
7+
JEKYLL_VERSION: "~> 3.9"
88
matrix:
99
- RUBY_FOLDER_VER: "26"
10-
JEKYLL_VERSION : "~> 3.7.4"
10+
JEKYLL_VERSION : "~> 3.8.6"
1111
- RUBY_FOLDER_VER: "26"
1212
JEKYLL_VERSION : ">= 4.0.0.pre.alpha1"
1313
- RUBY_FOLDER_VER: "26"

0 commit comments

Comments
 (0)