You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ct...@apache.org on 2019/10/17 14:42:13 UTC

[lucene-solr] 02/03: SOLR-12786: add back explicit asciidoctor install for Jenkins build

This is an automated email from the ASF dual-hosted git repository.

ctargett pushed a commit to branch jira/SOLR-13452_gradle_7_refguide
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit b1733c8c0af9d5822e6220c67ede96508009eeb3
Author: Cassandra Targett <ca...@lucidworks.com>
AuthorDate: Wed Oct 16 12:20:58 2019 -0500

    SOLR-12786: add back explicit asciidoctor install for Jenkins build
---
 dev-tools/scripts/jenkins.build.ref.guide.sh | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-tools/scripts/jenkins.build.ref.guide.sh b/dev-tools/scripts/jenkins.build.ref.guide.sh
index e91c240..c3203ee 100755
--- a/dev-tools/scripts/jenkins.build.ref.guide.sh
+++ b/dev-tools/scripts/jenkins.build.ref.guide.sh
@@ -60,6 +60,8 @@ 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 uninstall --all --ignore-dependencies asciidoctor"  # Get rid of all versions
+echoRun "gem install --force --version 2.0.10 asciidoctor"
 echoRun "gem install --force --version 3.0.0 jekyll-asciidoc"
 echoRun "gem install --force --version 4.0.1 slim"
 echoRun "gem install --force --version 2.0.10 tilt"