mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
26 lines
637 B
YAML
26 lines
637 B
YAML
machine:
|
|
environment:
|
|
GOPATH: "/home/ubuntu/.go_workspace"
|
|
ORG_PATH: "github.com/grafana"
|
|
REPO_PATH: "${ORG_PATH}/grafana"
|
|
|
|
dependencies:
|
|
override:
|
|
- rm -rf ${GOPATH}/src/${REPO_PATH}
|
|
- mkdir -p ${GOPATH}/src/${ORG_PATH}
|
|
- ln -s ~/grafana ${GOPATH}/src/${ORG_PATH}
|
|
- go get github.com/tools/godep
|
|
- npm install
|
|
|
|
test:
|
|
override:
|
|
# FMT
|
|
- test -z "$(gofmt -s -l . | grep -v Godeps/_workspace/src/ | tee /dev/stderr)"
|
|
# GO VET
|
|
- go vet ./pkg/...
|
|
# Go test
|
|
- godep go test -v ./pkg/...
|
|
# js tests
|
|
- ./node_modules/grunt-cli/bin/grunt test
|
|
- npm run coveralls
|