-
Notifications
You must be signed in to change notification settings - Fork 33
/
Makefile
53 lines (40 loc) · 1.63 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org>
#
# SPDX-License-Identifier: Apache-2.0
export CGO_ENABLED=1
export GO111MODULE=on
.PHONY: build
ONOS_PROTOC_VERSION := v0.6.9
GOLANG_CI_VERSION := v1.52.2
all: build
build: # @HELP build the Go binaries (default)
go build github.com/onosproject/onos-lib-go/pkg/...
test: # @HELP run the unit tests and source code validation producing a golang style report
test: build lint license
go test -race github.com/onosproject/onos-lib-go/pkg/...
protos: # @HELP compile the protobuf files (using protoc-go Docker)
docker run -it -v `pwd`:/go/src/github.com/onosproject/onos-lib-go \
-w /go/src/github.com/onosproject/onos-lib-go \
--entrypoint build/bin/compile-protos.sh \
onosproject/protoc-go:${ONOS_PROTOC_VERSION}
lint: # @HELP examines Go source code and reports coding problems
golangci-lint --version | grep $(GOLANG_CI_VERSION) || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b `go env GOPATH`/bin $(GOLANG_CI_VERSION)
golangci-lint run --timeout 15m
license: # @HELP run license checks
rm -rf venv
python3 -m venv venv
. ./venv/bin/activate;\
python3 -m pip install --upgrade pip;\
python3 -m pip install reuse;\
reuse lint
check-version: # @HELP check version is duplicated
./build/bin/version_check.sh all
clean:: # @HELP remove all the build artifacts
go clean github.com/onosproject/onos-lib-go/...
help:
@grep -E '^.*: *# *@HELP' $(MAKEFILE_LIST) \
| sort \
| awk ' \
BEGIN {FS = ": *# *@HELP"}; \
{printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}; \
'