Sha256: ee33dd271de9a0abb40651f8f8b5614728bee5340bd7ae0e702dad67483048a8

Contents?: true

Size: 746 Bytes

Versions: 25

Compression:

Stored size: 746 Bytes

Contents

#!/usr/bin/env bash

set -e

gem install bundler

if [[ $ELASTICSEARCH_VERSION == 1* ]]; then
  curl -L -O https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-$ELASTICSEARCH_VERSION.tar.gz
elif [[ $ELASTICSEARCH_VERSION == 2* ]]; then
  curl -L -O https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/$ELASTICSEARCH_VERSION/elasticsearch-$ELASTICSEARCH_VERSION.tar.gz
else
  curl -L -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-$ELASTICSEARCH_VERSION.tar.gz
fi
tar -xvf elasticsearch-$ELASTICSEARCH_VERSION.tar.gz
cd elasticsearch-$ELASTICSEARCH_VERSION/bin
./elasticsearch -d
wget -O- --waitretry=1 --tries=30 --retry-connrefused -v http://127.0.0.1:9200/

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
searchkick-hooopo-2.4.1 test/ci/before_install.sh
searchkick-hooopo-2.4.0 test/ci/before_install.sh
searchkick-2.4.0 test/ci/before_install.sh
searchkick-hooopo-2.3.5 test/ci/before_install.sh
searchkick-2.3.2 test/ci/before_install.sh
searchkick-hooopo-2.3.4 test/ci/before_install.sh
searchkick-2.3.1 test/ci/before_install.sh
searchkick-hooopo-2.3.3 test/ci/before_install.sh
searchkick-hooopo-2.3.2 test/ci/before_install.sh
searchkick-hooopo-2.3.1 test/ci/before_install.sh
searchkick-hooopo-2.3.0 test/ci/before_install.sh
searchkick-2.3.0 test/ci/before_install.sh
searchkick-2.2.1 test/ci/before_install.sh
searchkick-2.2.0 test/ci/before_install.sh
searchkick-2.1.1 test/ci/before_install.sh
searchkick-2.1.0 test/ci/before_install.sh
searchkick-2.0.4 test/ci/before_install.sh
searchkick-2.0.3 test/ci/before_install.sh
searchkick-2.0.2 test/ci/before_install.sh
searchkick-2.0.1 test/ci/before_install.sh