This repository was archived by the owner on Sep 9, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ r_github_packages:
14
14
env :
15
15
matrix :
16
16
- SOLR_VERSION=5.4.1
17
+ - SOLR_VERSION=6.0.0
18
+ - SOLR_VERSION=7.0.0
17
19
18
20
before_install :
19
21
- case "$SOLR_VERSION" in
@@ -23,6 +25,16 @@ before_install:
23
25
export SOLR_VERSION=5.4.1 ;
24
26
mkdir temp && cd temp && wget http://archive.apache.org/dist/lucene/solr/$SOLR_VERSION/solr-$SOLR_VERSION.tgz && tar -zxf solr-$SOLR_VERSION.tgz && cd solr-$SOLR_VERSION && bin/solr start -p 8983 && bin/solr create -c gettingstarted -p 8983 && bin/post -c gettingstarted example/exampledocs/*.xml && cd ../../
25
27
;;
28
+
29
+ " 6.0.0" )
30
+ export SOLR_VERSION=6.0.0 ;
31
+ mkdir temp && cd temp && wget http://archive.apache.org/dist/lucene/solr/$SOLR_VERSION/solr-$SOLR_VERSION.tgz && tar -zxf solr-$SOLR_VERSION.tgz && cd solr-$SOLR_VERSION && bin/solr start -p 8983 && bin/solr create -c gettingstarted -p 8983 && bin/post -c gettingstarted example/exampledocs/*.xml && cd ../../
32
+ ;;
33
+
34
+ " 7.0.0" )
35
+ export SOLR_VERSION=7.0.0 ;
36
+ mkdir temp && cd temp && wget http://archive.apache.org/dist/lucene/solr/$SOLR_VERSION/solr-$SOLR_VERSION.tgz && tar -zxf solr-$SOLR_VERSION.tgz && cd solr-$SOLR_VERSION && bin/solr start -p 8983 && bin/solr create -c gettingstarted -p 8983 && bin/post -c gettingstarted example/exampledocs/*.xml && cd ../../
37
+ ;;
26
38
esac
27
39
28
40
You can’t perform that action at this time.
0 commit comments