-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile
66 lines (51 loc) · 2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
# SPDX-License-Identifier: Apache-2.0
# Copyright 2019 Open Networking Foundation
# Copyright 2024 Intel Corporation
export CGO_ENABLED=1
export GO111MODULE=on
.PHONY: build
ONOS_MLB_VERSION ?= latest
ONOS_BUILD_VERSION := v0.6.6
ONOS_PROTOC_VERSION := v0.6.6
BUF_VERSION := 0.27.1
all: build docker-build
build: # @HELP build the Go binaries and run all validations (default)
build:
GOPRIVATE="github.com/onosproject/*" go build -o build/_output/onos-mlb ./cmd/onos-mlb
test: # @HELP run the unit tests and source code validation
test: build lint license
go test -race github.com/onosproject/onos-mlb/pkg/...
go test -race github.com/onosproject/onos-mlb/cmd/...
docker-build-onos-mlb: # @HELP build onos-mlb Docker image
@go mod vendor
docker build . -f build/onos-mlb/Dockerfile \
-t onosproject/onos-mlb:${ONOS_MLB_VERSION}
@rm -rf vendor
docker-build: # @HELP build all Docker images
docker-build: build docker-build-onos-mlb
docker-push-onos-mlb: # @HELP push onos-mlb Docker image
docker push onosproject/onos-mlb:${ONOS_MLB_VERSION}
docker-push: # @HELP push docker images
docker-push: docker-push-onos-mlb
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
rm -rf ./build/_output ./vendor ./cmd/onos-mlb/onos-mlb ./cmd/onos/onos venv
go clean github.com/onosproject/onos-mlb/...
help:
@grep -E '^.*: *# *@HELP' $(MAKEFILE_LIST) \
| sort \
| awk ' \
BEGIN {FS = ": *# *@HELP"}; \
{printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}; \
'