aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/olivere/elastic/v7/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/olivere/elastic/v7/.travis.yml')
-rw-r--r--vendor/github.com/olivere/elastic/v7/.travis.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/vendor/github.com/olivere/elastic/v7/.travis.yml b/vendor/github.com/olivere/elastic/v7/.travis.yml
deleted file mode 100644
index 374a7b1f93..0000000000
--- a/vendor/github.com/olivere/elastic/v7/.travis.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-sudo: required
-language: go
-go:
-- "1.12.x"
-- "1.13.x"
-- tip
-matrix:
- allow_failures:
- - go: tip
-env:
-- GO111MODULE=on
-- GO111MODULE=off
-addons:
- apt:
- update: true
- packages:
- - docker-ce
-services:
-- docker
-before_install:
-- if [[ "$TRAVIS_OS_NAME" == "linux" && ! $(which nc) ]] ; then sudo apt-get install -y netcat ; fi
-- sudo sysctl -w vm.max_map_count=262144
-- docker-compose pull
-- docker-compose up -d
-- go get -u github.com/google/go-cmp/cmp
-- go get -u github.com/fortytw2/leaktest
-- go get . ./aws/... ./config/... ./trace/... ./uritemplates/...
-- while ! nc -z localhost 9200; do sleep 1; done
-- while ! nc -z localhost 9210; do sleep 1; done
-install: true # ignore the go get -t -v ./...
-script:
-- go test -race -deprecations -strict-decoder -v . ./aws/... ./config/... ./trace/... ./uritemplates/...