summaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in/olivere/elastic.v5/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gopkg.in/olivere/elastic.v5/.travis.yml')
-rw-r--r--vendor/gopkg.in/olivere/elastic.v5/.travis.yml27
1 files changed, 18 insertions, 9 deletions
diff --git a/vendor/gopkg.in/olivere/elastic.v5/.travis.yml b/vendor/gopkg.in/olivere/elastic.v5/.travis.yml
index d88c9c642..24e24ecc8 100644
--- a/vendor/gopkg.in/olivere/elastic.v5/.travis.yml
+++ b/vendor/gopkg.in/olivere/elastic.v5/.travis.yml
@@ -1,16 +1,25 @@
sudo: required
language: go
-script: go test -race -v . ./config
go:
- - 1.x
- - tip
+- "1.10.x"
+- "1.11rc1"
+#- tip
+env:
+- GO111MODULE=on
matrix:
allow_failures:
- - go: tip
+ - go: tip
services:
- - docker
+- docker
before_install:
- - go get github.com/fortytw2/leaktest
- - sudo sysctl -w vm.max_map_count=262144
- - docker run --rm --privileged=true -p 9200:9200 -p 9300:9300 -e "bootstrap.memory_lock=true" -e "ES_JAVA_OPTS=-Xms1g -Xmx1g" docker.elastic.co/elasticsearch/elasticsearch:5.6.9 elasticsearch -Expack.security.enabled=false -Escript.inline=true -Escript.stored=true -Escript.file=true -Enetwork.host=_local_,_site_ -Enetwork.publish_host=_local_ >& /dev/null &
- - sleep 30
+# Install netcat
+- if [[ "$TRAVIS_OS_NAME" == "linux" && ! $(which nc) ]] ; then sudo apt-get install -y netcat ; fi
+- sudo sysctl -w vm.max_map_count=262144
+- docker run --rm --privileged=true -p 9200:9200 -p 9300:9300 -e "bootstrap.memory_lock=true" -e "ES_JAVA_OPTS=-Xms1g -Xmx1g" docker.elastic.co/elasticsearch/elasticsearch:5.6.10 elasticsearch -Expack.security.enabled=false -Escript.inline=true -Escript.stored=true -Escript.file=true -Enetwork.host=_local_,_site_ -Enetwork.publish_host=_local_ >& /dev/null &
+- go get -u github.com/fortytw2/leaktest
+- go get . ./config/... ./aws/...
+# Wait for Elasticsearch
+- while ! nc -z localhost 9200; do sleep 1; done
+install: true
+script:
+- go test -race -v . ./aws/... ./config/...