mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2024-12-14 11:57:51 +00:00
Merge pull request #1927 from k8s-infra-cherrypick-robot/cherry-pick-1829-to-release-0.15
[release-0.15] docs: use jekyll-rtd-theme from a ruby gem
This commit is contained in:
commit
b7991365eb
5 changed files with 16 additions and 8 deletions
4
Makefile
4
Makefile
|
@ -246,11 +246,11 @@ poll-images:
|
|||
|
||||
site-build:
|
||||
@mkdir -p docs/vendor/bundle
|
||||
$(SITE_BUILD_CMD) sh -c "bundle install && jekyll build $(JEKYLL_OPTS)"
|
||||
$(SITE_BUILD_CMD) sh -c "bundle plugin install bundler-override && bundle install && jekyll build $(JEKYLL_OPTS)"
|
||||
|
||||
site-serve:
|
||||
@mkdir -p docs/vendor/bundle
|
||||
$(SITE_BUILD_CMD) sh -c "bundle install && jekyll serve $(JEKYLL_OPTS) -H 127.0.0.1"
|
||||
$(SITE_BUILD_CMD) sh -c "bundle plugin install bundler-override && bundle install && jekyll serve $(JEKYLL_OPTS) -H 127.0.0.1"
|
||||
|
||||
benchmark:
|
||||
go test -bench=./pkg/nfd-master -run=^# ./pkg/nfd-master
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
source "https://rubygems.org"
|
||||
|
||||
# Use override plugin to drop incorrect dependency of jekyll-rtd-them on github-pages (~> 209)
|
||||
# The original dep would allow github-pages v209.x but not v210 or later.
|
||||
plugin 'bundler-override'
|
||||
require File.join(Bundler::Plugin.index.load_paths("bundler-override")[0], "bundler-override") rescue nil
|
||||
override 'jekyll-rtd-theme', :drop => "github-pages"
|
||||
|
||||
# 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:
|
||||
|
@ -29,3 +35,5 @@ gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform?
|
|||
#gem "kramdown-parser-gfm"
|
||||
|
||||
gem "webrick", "~> 1.8"
|
||||
|
||||
gem 'jekyll-rtd-theme', '~> 2.0', '>= 2.0.10'
|
||||
|
|
|
@ -141,6 +141,7 @@ GEM
|
|||
jekyll (>= 3.5, < 5.0)
|
||||
jekyll-sass-converter (>= 1.0, <= 3.0.0, != 2.0.0)
|
||||
rubyzip (>= 1.3.0, < 3.0)
|
||||
jekyll-rtd-theme (2.0.10)
|
||||
jekyll-sass-converter (1.5.2)
|
||||
sass (~> 3.4)
|
||||
jekyll-seo-tag (2.8.0)
|
||||
|
@ -260,10 +261,11 @@ PLATFORMS
|
|||
DEPENDENCIES
|
||||
github-pages (~> 228)
|
||||
jekyll (~> 3.9.0)
|
||||
jekyll-rtd-theme (~> 2.0, >= 2.0.10)
|
||||
tzinfo (~> 2.0)
|
||||
tzinfo-data
|
||||
wdm (~> 0.1.1)
|
||||
webrick (~> 1.8)
|
||||
|
||||
BUNDLED WITH
|
||||
2.0.2
|
||||
2.3.27
|
||||
|
|
|
@ -26,9 +26,7 @@ markdown: kramdown
|
|||
kramdown:
|
||||
toc_levels: 1..3
|
||||
|
||||
remote_theme: rundocs/jekyll-rtd-theme@v2.0.10
|
||||
plugins:
|
||||
- jekyll-remote-theme
|
||||
theme: jekyll-rtd-theme
|
||||
|
||||
# Exclude from processing.
|
||||
# The following items will not be processed, by default. Create a custom list
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Netlify settings
|
||||
[build]
|
||||
command = "cd docs/ && bundle install && jekyll build"
|
||||
publish = "docs/_site/"
|
||||
command = "cd docs/ && source /opt/buildhome/.rvm/scripts/rvm && rvm install ruby-3.1.6 && bundle plugin install bundler-override && bundle install && jekyll build"
|
||||
publish = "docs/_site/"
|
||||
|
|
Loading…
Reference in a new issue