add python compatibility module
[multicloud/k8s.git] / src / orchestrator / Makefile
1 # SPDX-license-identifier: Apache-2.0
2 ##############################################################################
3 # Copyright (c) 2019 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 all: clean
13         CGO_ENABLED=1 GOOS=linux GOARCH=amd64
14         @go build -tags netgo -o ./orchestrator ./cmd/main.go
15
16 # 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
17 # no need to create a static binary with additional flags. However, for generating binary, additional build flags are necessary. This if used with
18 # mock plugin errors out for unit tests. So the seperation avoids the error.
19
20 build: clean test cover
21 deploy: build
22
23 .PHONY: test
24 test: clean
25         @go test -race ./...
26
27 format:
28         @go fmt ./...
29
30 clean:
31         @find . -name "*so" -delete
32         @rm -f orchestrator coverage.html coverage.out
33
34 .PHONY: cover
35 cover:
36         @go test -race ./... -coverprofile=coverage.out
37         @go tool cover -html=coverage.out -o coverage.html