You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by us...@apache.org on 2021/07/07 13:32:02 UTC

[solr] branch main updated: SOLR-15520: Fix build on windows by downgrading jekyll (#205)

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

uschindler pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/main by this push:
     new 1dbde9c  SOLR-15520: Fix build on windows by downgrading jekyll (#205)
1dbde9c is described below

commit 1dbde9cd573213a43ad8ba2cdc4c663c864a2ffa
Author: Uwe Schindler <us...@apache.org>
AuthorDate: Wed Jul 7 15:31:55 2021 +0200

    SOLR-15520: Fix build on windows by downgrading jekyll (#205)
    
    SOLR-15520: Fix build on windows by downgrading jekyll
---
 solr/solr-ref-guide/build.gradle | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/solr/solr-ref-guide/build.gradle b/solr/solr-ref-guide/build.gradle
index 67f19c6..31da662 100644
--- a/solr/solr-ref-guide/build.gradle
+++ b/solr/solr-ref-guide/build.gradle
@@ -67,8 +67,10 @@ dependencies {
     depVer('org.apache.tika:tika-core')
     depVer('org.apache.zookeeper:zookeeper')
 
-    // jekyll dependencies
-    gems 'rubygems:jekyll:4.2.0'
+    // jekyll dependencies: we cannot use jekyll >=4, as this version uses native lib
+    // ("sassc" instead of deprecated "sass") which fails to compile on some platforms.
+    // See https://issues.apache.org/jira/browse/SOLR-15520 for more details.
+    gems 'rubygems:jekyll:3.9.1'
     gems 'rubygems:jekyll-asciidoc:3.0.0'
 
     // don't know why we have to explicitly add these deps but it doesn't resolve them