summaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in/olivere/elastic.v5/.travis.yml
blob: c31c1805d5d92ffceb51fbfc23861aadfa54eb82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
sudo: required
language: go
go:
  - 1.7
  - 1.8
  - tip
matrix:
  allow_failures:
    - go: tip
services:
  - docker
before_script:
  - 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.4.1 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