You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
579 B
15 lines
579 B
sudo: required |
|
language: go |
|
script: go test -race -v . ./config |
|
go: |
|
- 1.x |
|
- tip |
|
matrix: |
|
allow_failures: |
|
- go: tip |
|
services: |
|
- docker |
|
before_install: |
|
- 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
|
|
|