blob: b4322c13c8963cbd1b12ae8f6d1da2e82df3f536 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
sudo: required
language: go
script: go test -race -v . ./config
go:
- 1.8.x
- 1.9.x
# - tip
matrix:
allow_failures:
- go: tip
services:
- docker
before_install:
- sudo sysctl -w vm.max_map_count=262144
- docker run -d --rm -p 9200:9200 -e "http.host=0.0.0.0" -e "transport.host=127.0.0.1" -e "bootstrap.memory_lock=true" -e "ES_JAVA_OPTS=-Xms1g -Xmx1g" docker.elastic.co/elasticsearch/elasticsearch:6.1.2 elasticsearch -Expack.security.enabled=false -Enetwork.host=_local_,_site_ -Enetwork.publish_host=_local_
|