Sha256: 20c12771d0165a1a521afc46690bab729c20281b3bc60ba9685f9b82f18ef0a3

Contents?: true

Size: 746 Bytes

Versions: 7

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=60 --retry-connrefused -v http://127.0.0.1:9200/

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
searchkick-3.1.0 test/ci/before_install.sh
searchkick-3.0.3 test/ci/before_install.sh
searchkick_evichat-0.0.2 test/ci/before_install.sh
searchkick-3.0.2 test/ci/before_install.sh
searchkick-3.0.1 test/ci/before_install.sh
searchkick-3.0.0 test/ci/before_install.sh
searchkick-2.5.0 test/ci/before_install.sh