From cea5feefdd41eaa5aef4a8311d4836118cf903df Mon Sep 17 00:00:00 2001 From: HoneyryderChuck Date: Sat, 24 Feb 2018 20:18:06 +0000 Subject: [PATCH] only build docs for latest ruby --- Rakefile | 2 +- test/support/ci/build.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index fa363921..1c9ad28a 100644 --- a/Rakefile +++ b/Rakefile @@ -15,7 +15,7 @@ task :rubocop do RuboCop::RakeTask.new end -task :"test:ci" => %i[test rubocop website_rdoc] +task :"test:ci" => %i[test rubocop] # Doc diff --git a/test/support/ci/build.sh b/test/support/ci/build.sh index 2ec8fe81..8269f544 100755 --- a/test/support/ci/build.sh +++ b/test/support/ci/build.sh @@ -11,6 +11,7 @@ RET=$? RUBY_VERSION=`ruby -e 'puts RUBY_VERSION'` if [[ ${RUBY_VERSION:0:3} = "2.5" ]]; then + bundle exec rake website_rdoc && \ cd www && bundle install && \ bundle exec jekyll build -d public fi