43 строки
1.5 KiB
YAML
43 строки
1.5 KiB
YAML
matrix:
|
|
include:
|
|
- language: go
|
|
go:
|
|
- 1.9
|
|
- 1.10
|
|
- 1.11
|
|
- tip
|
|
install:
|
|
- go get -u github.com/golang/lint/golint
|
|
- go get github.com/securego/gosec/cmd/gosec/...
|
|
- go get -u github.com/Masterminds/glide
|
|
- go get -u github.com/onsi/ginkgo/ginkgo
|
|
- go get -u github.com/onsi/gomega
|
|
- export PATH=$PATH:$HOME/gopath/bin
|
|
script:
|
|
- cd tools/elasticlicense && make test && cd ../../
|
|
- cd tools/elastictemplate && make test && cd ../../
|
|
- cd tools/elasticwatcher && make test && cd ../../
|
|
- cd tools/elasticsnapshot && make test && cd ../../
|
|
|
|
- language: generic
|
|
env:
|
|
- KUBECTL_VERSION=v1.11.3
|
|
- HELM_VERSION=v2.11.0
|
|
install:
|
|
- wget https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl -O /tmp/kubectl
|
|
- chmod +x /tmp/kubectl
|
|
- wget http://storage.googleapis.com/kubernetes-helm/helm-${HELM_VERSION}-linux-amd64.tar.gz -O /tmp/helm.tar.gz
|
|
- tar xzf /tmp/helm.tar.gz -C /tmp --strip-components=1
|
|
- chmod +x /tmp/helm
|
|
- export PATH=$PATH:/tmp
|
|
before_script:
|
|
- helm init --client-only
|
|
- helm repo add stable https://kubernetes-charts.storage.googleapis.com
|
|
- |
|
|
for chart in $(find . -name 'requirements.yaml'); do
|
|
helm dep build $(dirname ${chart})
|
|
done
|
|
script:
|
|
- helm lint charts/elasticsearch
|
|
- helm lint charts/kibana-logstash
|