Развертывание приложения jekyll в Cloudcannon завершается неудачно - PullRequest
1 голос
/ 03 апреля 2019

Я пытаюсь развернуть свое приложение jekyll на платформе Cloudcannon CMS для Jekyll, но моя сборка завершается неудачно с таким выводом:

Syncing raw files... done
Checking existing local bundle state... failed
Loading gem cache... 
Checking gem cache (bundle_cache/Jw8rkIm9v3Cmawv2raEpkN96fz3R5X1Q_XMn7xpGB1s.zip)... no cache

$ export JEKYLL_ENV="production"

$ ruby -v

ruby 2.3.8p459 (2018-10-18 revision 65136) [x86_64-linux]

$ bundle version

Bundler version 2.0.1 (2019-01-04 commit d7ad2192f)

$ bundle config --global jobs 4

Configured concurrent installs!

$ bundle install

Using local cacheable path...
Fetching gem metadata from https://rubygems.org/...........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
jekyll-feed-0.12.0 requires ruby version >= 2.4.0, which is incompatible with
the current version, ruby 2.3.8p459

Что я делаю не так и как правильно обновить версию ruby?

Мой Gemfile выглядит так:

source "https://rubygems.org"

# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
#     bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
gem "jekyll", "~> 3.8.5"

# This is the default theme for new Jekyll sites. You may change this to anything you like.
gem "minima", "~> 2.0"

# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
# gem "github-pages", group: :jekyll_plugins

# If you have any plugins, put them here!
group :jekyll_plugins do
  gem "jekyll-feed", "~> 2.4.0"
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]

# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.0" if Gem.win_platform?

Я попытался изменить версию jekyll-feed и снова связать ее, но это дало мне те же результаты, и я не хочу удалять этот плагин, потому что он мне нужен.

Ответы [ 2 ]

3 голосов
/ 04 апреля 2019

Джордан из CloudCannon здесь.

ashmaroli правильный, вы ссылаетесь на неверный номер версии для jekyll-feed. Следующие шаги ашмароли должны решить проблему.

В качестве дополнительного примечания мы добавим поддержку нескольких версий Ruby в течение следующего месяца или двух. Это разрешит любые будущие несовместимости с плагинами, для которых требуется более поздняя версия Ruby.

Если у вас есть еще вопросы, не стесняйтесь , свяжитесь с нами , мы более чем рады помочь:)

3 голосов
/ 03 апреля 2019

Проблема может быть от вашего Gemfile.lock.

Последняя версия jekyll-feed: 0.12.1
Исправьте свой Gemfile так, чтобы он указывал на любую версию jekyll-feed, большую или равную 0.12.0:

gem "jekyll-feed", "~> 0.12"

Запустите bundle update, чтобы новая версия была установлена ​​и включена в ваш Gemfile.lock

Затем зафиксируйте и вставьте обновленный Gemfile и Gemfile.lock в удаленный репозиторий.

...