1. refactor kubesphere dependency service client creation, we can disable dependency by config 2. dependencies can be configured by configuration file 3. refactor cmd package using cobra.Command, so we can use hypersphere to invoke command sepearately. Later we only need to build one image to contains all kubesphere core components. One command to rule them all! 4. live reloading configuration currently not implemented
17 lines
324 B
YAML
17 lines
324 B
YAML
language: go
|
|
go_import_path: k8s.io/klog
|
|
dist: xenial
|
|
go:
|
|
- 1.9.x
|
|
- 1.10.x
|
|
- 1.11.x
|
|
- 1.12.x
|
|
script:
|
|
- go get -t -v ./...
|
|
- diff -u <(echo -n) <(gofmt -d .)
|
|
- diff -u <(echo -n) <(golint $(go list -e ./...))
|
|
- go tool vet . || go vet .
|
|
- go test -v -race ./...
|
|
install:
|
|
- go get golang.org/x/lint/golint
|