6c9628cdb1
* Rename 'vendor/src' -> 'vendor' * Ignore vendor/ instead of vendor/src/ for lint * Rename 'cmd/client' -> 'cmd/ocic' to make it 'go install'able * Rename 'cmd/server' -> 'cmd/ocid' to make it 'go install'able * Update Makefile to build and install from GOPATH * Update tests to locate ocid/ocic in GOPATH/bin * Search for binaries in GOPATH/bin instead of PATH * Install tools using `go get -u`, so they are updated on each run Signed-off-by: Jonathan Yu <jawnsy@redhat.com>
52 lines
1 KiB
Makefile
52 lines
1 KiB
Makefile
all: test testrace
|
|
|
|
deps:
|
|
go get -d -v google.golang.org/grpc/...
|
|
|
|
updatedeps:
|
|
go get -d -v -u -f google.golang.org/grpc/...
|
|
|
|
testdeps:
|
|
go get -d -v -t google.golang.org/grpc/...
|
|
|
|
updatetestdeps:
|
|
go get -d -v -t -u -f google.golang.org/grpc/...
|
|
|
|
build: deps
|
|
go build google.golang.org/grpc/...
|
|
|
|
proto:
|
|
@ if ! which protoc > /dev/null; then \
|
|
echo "error: protoc not installed" >&2; \
|
|
exit 1; \
|
|
fi
|
|
go get -u -v github.com/golang/protobuf/protoc-gen-go
|
|
# use $$dir as the root for all proto files in the same directory
|
|
for dir in $$(git ls-files '*.proto' | xargs -n1 dirname | uniq); do \
|
|
protoc -I $$dir --go_out=plugins=grpc:$$dir $$dir/*.proto; \
|
|
done
|
|
|
|
test: testdeps
|
|
go test -v -cpu 1,4 google.golang.org/grpc/...
|
|
|
|
testrace: testdeps
|
|
go test -v -race -cpu 1,4 google.golang.org/grpc/...
|
|
|
|
clean:
|
|
go clean -i google.golang.org/grpc/...
|
|
|
|
coverage: testdeps
|
|
./coverage.sh --coveralls
|
|
|
|
.PHONY: \
|
|
all \
|
|
deps \
|
|
updatedeps \
|
|
testdeps \
|
|
updatetestdeps \
|
|
build \
|
|
proto \
|
|
test \
|
|
testrace \
|
|
clean \
|
|
coverage
|