-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
136 lines (112 loc) · 4.45 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# Copyright CERN.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Based on the helm Makefile:
# https://github.com/helm/helm/blob/master/Makefile
BINDIR := $(CURDIR)/bin
DIST_DIRS := find * -type d -exec
TARGETS ?= linux/amd64 linux/arm64
IMAGE_BUILD_TOOL ?= podman
GOX_PARALLEL ?= 3
GOPATH = $(shell go env GOPATH)
GOX = $(GOPATH)/bin/gox
GOIMPORTS = $(GOPATH)/bin/goimports
# go option
PKG := ./...
TAGS :=
TESTS := .
TESTFLAGS :=
LDFLAGS := -w -s
GOFLAGS :=
SRC := $(shell find . -type f -name '*.go' -print)
# Required for globs to work correctly
SHELL = /bin/bash
GIT_BRANCH = $(shell git rev-parse --abbrev-ref HEAD)
GIT_COMMIT = $(shell git rev-parse HEAD)
GIT_SHA = $(shell git rev-parse --short HEAD)
GIT_TAG = $(shell git describe --tags --abbrev=0 --exact-match 2>/dev/null)
GIT_DIRTY = $(shell test -n "`git status --porcelain`" && echo "dirty" || echo "clean")
ifdef VERSION
BINARY_VERSION = $(VERSION)
endif
BINARY_VERSION ?= ${GIT_TAG}
BASE_PKG = github.com/cern-eos/eosxd-csi
# Only set Version if building a tag or VERSION is set
ifneq ($(BINARY_VERSION),)
LDFLAGS += -X ${BASE_PKG}/internal/version.version=${BINARY_VERSION}
endif
# Clear the "unreleased" string in BuildMetadata
ifneq ($(GIT_TAG),)
LDFLAGS += -X ${BASE_PKG}/internal/version.metadata=
endif
LDFLAGS += -X ${BASE_PKG}/internal/version.commit=${GIT_COMMIT}
LDFLAGS += -X ${BASE_PKG}/internal/version.treestate=${GIT_DIRTY}
IMAGE_TAG := ${GIT_BRANCH}
ifneq ($(GIT_TAG),)
IMAGE_TAG = ${GIT_TAG}
endif
ARCH := $(shell uname -m)
ifeq ($(ARCH),x86_64)
LOCAL_TARGET=linux/amd64
else ifeq ($(ARCH),arm64)
LOCAL_TARGET=linux/arm64
endif
.PHONY: all
all: build
# ------------------------------------------------------------------------------
# build
build: TARGETS = $(LOCAL_TARGET)
build: build-cross
$(BINDIR)/csi-driver: $(SRC)
go build $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' -o $@ ./cmd/csi-driver
$(BINDIR)/automount-runner: $(SRC)
go build $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' -o $@ ./cmd/automount-runner
$(BINDIR)/mount-reconciler: $(SRC)
go build $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' -o $@ ./cmd/mount-reconciler
.PHONY: build-cross
build-cross: LDFLAGS += -extldflags "-static"
build-cross: $(GOX) $(SRC)
CGO_ENABLED=0 $(GOX) -parallel=$(GOX_PARALLEL) -output="$(BINDIR)/{{.OS}}-{{.Arch}}/csi-driver" -osarch='$(TARGETS)' $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' ./cmd/csi-driver
CGO_ENABLED=0 $(GOX) -parallel=$(GOX_PARALLEL) -output="$(BINDIR)/{{.OS}}-{{.Arch}}/automount-runner" -osarch='$(TARGETS)' $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' ./cmd/automount-runner
CGO_ENABLED=0 $(GOX) -parallel=$(GOX_PARALLEL) -output="$(BINDIR)/{{.OS}}-{{.Arch}}/mount-reconciler" -osarch='$(TARGETS)' $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' ./cmd/mount-reconciler
# ------------------------------------------------------------------------------
# image
image: build
$(IMAGE_BUILD_TOOL) build \
--build-arg RELEASE=$(IMAGE_TAG) \
--build-arg GITREF=$(GIT_COMMIT) \
--build-arg CREATED=$(shell date -u +"%Y-%m-%dT%H:%M:%SZ") \
-t registry.cern.ch/kubernetes/eosxd-csi:$(IMAGE_TAG) \
-f ./deployments/docker/Dockerfile .
# ------------------------------------------------------------------------------
# dependencies
$(GOX):
go install github.com/mitchellh/[email protected]
# ------------------------------------------------------------------------------
# linting
.PHONY: fmt
fmt:
@[ -x "$$(command -v gofumpt)" ] || go install mvdan.cc/gofumpt@latest
gofumpt -l -w .
# ------------------------------------------------------------------------------
.PHONY: clean
clean:
@rm -rf $(BINDIR)
.PHONY: info
info:
@echo "Version: ${VERSION}"
@echo "Git Tag: ${GIT_TAG}"
@echo "Git Commit: ${GIT_COMMIT}"
@echo "Git Tree State: ${GIT_DIRTY}"