forked from kata-containers/shim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
44 lines (35 loc) · 1.13 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
#
# Copyright 2017 HyperHQ Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
DESTDIR :=
PREFIX := /usr
LIBEXECDIR := $(PREFIX)/libexec
PROJECT := kata-containers
# Override will ignore PREFIX, LIBEXECDIR and PROJECT
INSTALLDIR := $(LIBEXECDIR)/$(PROJECT)
TARGET = kata-shim
SOURCES := $(shell find . 2>&1 | grep -E '.*\.go$$')
VERSION_FILE := ./VERSION
VERSION := $(shell grep -v ^\# $(VERSION_FILE))
COMMIT_NO := $(shell git rev-parse HEAD 2> /dev/null || true)
COMMIT := $(if $(shell git status --porcelain --untracked-files=no),${COMMIT_NO}-dirty,${COMMIT_NO})
VERSION_COMMIT := $(if $(COMMIT),$(VERSION)-$(COMMIT),$(VERSION))
# go build common flags
BUILDFLAGS := -buildmode=pie
$(TARGET): $(SOURCES) $(VERSION_FILE)
go build $(BUILDFLAGS) -o $@ -ldflags "-X main.version=$(VERSION_COMMIT)"
test:
@echo "Go tests using faketty"
bash .ci/faketty.sh .ci/go-test.sh
#Run again without fake tty to avoid hide any potential issue.
@echo "Go tests without faketty"
bash .ci/go-test.sh
clean:
rm -f $(TARGET)
install:
install -D $(TARGET) $(DESTDIR)/$(INSTALLDIR)/$(TARGET)
check: check-go-static
check-go-static:
bash .ci/static-checks.sh