You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2018/05/17 21:33:14 UTC

[2/2] lucene-solr:branch_7x: install asciidoctor gem before jekyll-asciidoc, to prevent installation of a too-new version of asciidoctor

install asciidoctor gem before jekyll-asciidoc, to prevent installation of a too-new version of asciidoctor


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/11346faf
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/11346faf
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/11346faf

Branch: refs/heads/branch_7x
Commit: 11346faf46b748b15c8d9e3e1b20b82468661e0f
Parents: 730e154
Author: Steve Rowe <sa...@apache.org>
Authored: Thu May 17 17:32:41 2018 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Thu May 17 17:33:03 2018 -0400

----------------------------------------------------------------------
 dev-tools/scripts/jenkins.build.ref.guide.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/11346faf/dev-tools/scripts/jenkins.build.ref.guide.sh
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/jenkins.build.ref.guide.sh b/dev-tools/scripts/jenkins.build.ref.guide.sh
index 95aa892..ccc1487 100755
--- a/dev-tools/scripts/jenkins.build.ref.guide.sh
+++ b/dev-tools/scripts/jenkins.build.ref.guide.sh
@@ -5,7 +5,8 @@
 # under solr/solr-ref-guide: "ant clean build-site build-pdf".
 #
 # The following will be downloaded and installed into $HOME/.rvm/:
-# RVM, Ruby, and Ruby gems jekyll, jekyll-asciidoc, and pygments.rb.
+# RVM, Ruby, and Ruby gems jekyll, asciidoctor, jekyll-asciidoc, 
+# and pygments.rb.
 #
 # The script expects to be run in the top-level project directory.
 #
@@ -58,9 +59,9 @@ echoRun "rvm $RUBY_VERSION@$GEMSET"      # Activate this project's gemset
 
 # Install gems in the gemset.  Param --force disables dependency conflict detection.
 echoRun "gem install --force --version 3.5.0 jekyll"
+echoRun "gem install --force --version 1.5.6.2 asciidoctor"
 echoRun "gem install --force --version 2.1.0 jekyll-asciidoc"
 echoRun "gem install --force --version 1.1.2 pygments.rb"
-echoRun "gem install --force --version 1.5.6.2 asciidoctor"
 
 cd solr/solr-ref-guide