Merge "Upgrade istio-operator"
[multicloud/k8s.git] / src / k8splugin / Makefile
1 # SPDX-license-identifier: Apache-2.0
2 ##############################################################################
3 # Copyright (c) 2018 Intel Corporation
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 export GO111MODULE=on
11
12 .PHONY: plugins
13
14
15 all: clean plugins
16         CGO_ENABLED=1 GOOS=linux GOARCH=amd64
17         @go build -tags netgo -o ./k8plugin ./cmd/main.go
18
19 # The following is done this way as each patch on CI runs build and each merge runs deploy. So for build we don't need to build binary and hence
20 # no need to create a static binary with additional flags. However, for generating binary, additional build flags are necessary. This if used with
21 # mock plugin errors out for unit tests. So the seperation avoids the error.
22
23 build: clean plugins test cover
24 deploy: build
25
26 .PHONY: test
27 test: clean
28         @go build -race -buildmode=plugin -o ./mock_files/mock_plugins/mockplugin.so ./mock_files/mock_plugins/mockplugin.go
29         @go test -race ./...
30
31 format:
32         @go fmt ./...
33
34 plugins:
35         @find plugins -maxdepth 1 -type d -not -path plugins -exec sh -c "ls {}/plugin.go | xargs go build -buildmode=plugin -tags netgo -o $(basename {}).so" \;
36
37 clean:
38         @find . -name "*so" -delete
39         @rm -f k8plugin
40
41 .PHONY: cover
42 cover:
43         @go test -race ./... -coverprofile=coverage.out
44         @go tool cover -html=coverage.out -o coverage.html