update jenkins script to use make

Signed-off-by: Vishnu kannan <vishnuk@google.com>
This commit is contained in:
Vishnu kannan 2016-07-11 13:22:18 -07:00
parent d2dba37eb8
commit c1f3340830
2 changed files with 2 additions and 4 deletions

View File

@ -14,7 +14,7 @@
GO := go
pkgs = $(shell $(GO) list ./... | grep -v vendor)
all: format build test
all: format vet build test
test:
@echo ">> running tests"

View File

@ -19,6 +19,4 @@ set -x
./build/check_gofmt.sh .
./build/check_boilerplate.sh
go vet github.com/google/cadvisor/...
go test -v -race -test.short github.com/google/cadvisor/...
go build github.com/google/cadvisor
make