This repository has been archived by the owner on Sep 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 115
/
Makefile
63 lines (49 loc) · 1.91 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
# Copyright 2016 The Kubernetes Authors.
#
# 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.
# Use the native vendor/ dependency system
export GO15VENDOREXPERIMENT=1
FRAKIT_VERSION := 1.0
BUILD_DIR ?= ./out
BUILD_TAGS := $(shell hack/libvirt_tag.sh)
LOCALKUBEFILES := go list -f '{{join .Deps "\n"}}' ./cmd/frakti/ | grep k8s.io | xargs go list -f '{{ range $$file := .GoFiles }} {{$$.Dir}}/{{$$file}}{{"\n"}}{{end}}'
.PHONY: default frakti flexvolume cinder-rbd gce-pd hyper-rbd
default: frakti flexvolume
frakti: $(shell $(LOCALKUBEFILES))
go build -a --tags "$(BUILD_TAGS)" -o ${BUILD_DIR}/frakti ./cmd/frakti
flexvolume: cinder-rbd gce-pd hyper-cephrbd
cinder-rbd:
go build -a --tags "$(BUILD_TAGS)" -o ${BUILD_DIR}/rbd ./cmd/flexvolume-cinder-rbd/cinder_rbd.go
gce-pd:
go build -a --tags "$(BUILD_TAGS)" -o ${BUILD_DIR}/pd ./cmd/flexvolume-gce-pd/gce_pd.go
hyper-cephrbd:
go build -a --tags "$(BUILD_TAGS)" -o ${BUILD_DIR}/cephrbd ./cmd/flexvolume-hyper-cephrbd/cephrbd.go
.PHONY: docker
docker:
cp ${BUILD_DIR}/flexvolume_driver deployment/flexvolume/
sudo docker build -t stackube/flex-volume:v${or ${IMAGE_VERSION},${FRAKIT_VERSION}} deployment/flexvolume/
.PHONY: install
install:
cp -f ./out/frakti /usr/bin
clean:
rm -rf ${BUILD_DIR}
# Build ginkgo
#
# Example:
# make ginkgo
.PHONY: ginkgo
ginkgo:
hack/make-rules/build.sh ./vendor/github.com/onsi/ginkgo/ginkgo
.PHONY: test-e2e
test-e2e: ginkgo frakti
hack/test-e2e.sh