-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
118 lines (94 loc) · 3.17 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
# Executables
GO ?= $(shell which go 2>/dev/null)
DOCKER ?= $(shell which docker 2>/dev/null)
# Locations
BUILD_DIR ?= build
CMD_DIR := $(wildcard cmd/*)
# VERBOSE=1
ifneq ($(VERBOSE),)
VERBOSE_FLAG = -v
else
VERBOSE_FLAG =
endif
# Set OS and Architecture
ARCH ?= $(shell arch | tr A-Z a-z | sed 's/x86_64/amd64/' | sed 's/i386/amd64/' | sed 's/armv7l/arm/' | sed 's/aarch64/arm64/')
OS ?= $(shell uname | tr A-Z a-z)
VERSION ?= $(shell git describe --tags --always | sed 's/^v//')
# Set build flags
BUILD_MODULE = $(shell cat go.mod | head -1 | cut -d ' ' -f 2)
BUILD_LD_FLAGS += -X $(BUILD_MODULE)/pkg/version.GitSource=${BUILD_MODULE}
BUILD_LD_FLAGS += -X $(BUILD_MODULE)/pkg/version.GitTag=$(shell git describe --tags --always)
BUILD_LD_FLAGS += -X $(BUILD_MODULE)/pkg/version.GitBranch=$(shell git name-rev HEAD --name-only --always)
BUILD_LD_FLAGS += -X $(BUILD_MODULE)/pkg/version.GitHash=$(shell git rev-parse HEAD)
BUILD_LD_FLAGS += -X $(BUILD_MODULE)/pkg/version.GoBuildTime=$(shell date -u '+%Y-%m-%dT%H:%M:%SZ')
BUILD_FLAGS = -ldflags "-s -w ${BUILD_LD_FLAGS}"
# Docker
DOCKER_REPO ?= ghcr.io/mutablelogic/go-llm
DOCKER_SOURCE ?= ${BUILD_MODULE}
DOCKER_TAG = ${DOCKER_REPO}-${OS}-${ARCH}:${VERSION}
###############################################################################
# ALL
.PHONY: all
all: clean build
###############################################################################
# BUILD
# Build the commands in the cmd directory
.PHONY: build
build: tidy $(CMD_DIR)
$(CMD_DIR): go-dep mkdir
@echo Build command $(notdir $@) GOOS=${OS} GOARCH=${ARCH}
@GOOS=${OS} GOARCH=${ARCH} ${GO} build ${BUILD_FLAGS} -o ${BUILD_DIR}/$(notdir $@) ./$@
# Build the docker image
.PHONY: docker
docker: docker-dep
@echo build docker image ${DOCKER_TAG} OS=${OS} ARCH=${ARCH} SOURCE=${DOCKER_SOURCE} VERSION=${VERSION}
@${DOCKER} build \
--tag ${DOCKER_TAG} \
--build-arg ARCH=${ARCH} \
--build-arg OS=${OS} \
--build-arg SOURCE=${DOCKER_SOURCE} \
--build-arg VERSION=${VERSION} \
-f etc/docker/Dockerfile .
# Push docker container
.PHONY: docker-push
docker-push: docker-dep
@echo push docker image: ${DOCKER_TAG}
@${DOCKER} push ${DOCKER_TAG}
# Print out the version
.PHONY: docker-version
docker-version: docker-dep
@echo "tag=${VERSION}"
###############################################################################
# TEST
.PHONY: test
test: unit-test coverage-test
.PHONY: unit-test
unit-test: go-dep
@echo Unit Tests
@${GO} test ${VERBOSE_FLAG} ./pkg/...
.PHONY: coverage-test
coverage-test: go-dep mkdir
@echo Test Coverage
@${GO} test -coverprofile ${BUILD_DIR}/coverprofile.out ./pkg/...
###############################################################################
# CLEAN
.PHONY: tidy
tidy:
@echo Running go mod tidy
@${GO} mod tidy
.PHONY: mkdir
mkdir:
@install -d ${BUILD_DIR}
.PHONY: clean
clean:
@echo Clean
@rm -fr $(BUILD_DIR)
@${GO} clean
###############################################################################
# DEPENDENCIES
.PHONY: go-dep
go-dep:
@test -f "${GO}" && test -x "${GO}" || (echo "Missing go binary" && exit 1)
.PHONY: docker-dep
docker-dep:
@test -f "${DOCKER}" && test -x "${DOCKER}" || (echo "Missing docker binary" && exit 1)