-
Notifications
You must be signed in to change notification settings - Fork 154
/
Makefile
89 lines (73 loc) · 2.81 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
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.
#
cur_mkfile := $(abspath $(lastword $(MAKEFILE_LIST)))
currentPath := $(patsubst %/, %, $(dir $(cur_mkfile)))
pixiuPath := /cmd/pixiu/
mainPath := $(currentPath)$(pixiuPath)
VERSION = $(shell git describe --abbrev=0 --tags $(git rev-list --tags --max-count=1) || echo "0.0.4")
targetName := dubbo-go-pixiu
api-config-path:=${api-config}
ifeq (,$(api-config-path))
$(warning api-config-path is nil, default: configs/api_config.yaml)
api-config-path = configs/api_config.yaml
endif
config-path:=${config-path}
ifeq (,$(config-path))
$(warning config-path is nil, default: configs/conf.yaml)
config-path = configs/conf.yaml
endif
$(info api-config-path = $(api-config-path))
$(info config-path = $(config-path))
os := $(shell go env GOOS)
ifeq (windows,$(os))
targetName = dubbo-go-pixiu.exe
endif
exe := $(mainPath)$(targetName)
build:
cd $(mainPath) && go build -o $(currentPath)/$(targetName) *.go
run: build
./dubbo-go-pixiu gateway start -c $(config-path)
license-check-util:
go install github.com/lsm-dev/license-header-checker/cmd/license-header-checker@latest
license-check:
license-header-checker -v -a -r -i vendor -i .github/actions /tmp/tools/license/license.txt . go
image:
@docker build \
-t dubbogopixiu/$(targetName):latest \
-t dubbogopixiu/$(targetName):$(VERSION) \
--build-arg build=$(BUILD) --build-arg version=$(VERSION) \
-f Dockerfile --no-cache --platform linux/amd64 .
test:
sh before_ut.sh
go test ./pkg/... -gcflags=-l -coverprofile=coverage.txt -covermode=atomic
integrate-test:
sh start_integrate_test.sh
clean:
@rm -rf ./dubbo-go-pixiu
import-format:check-import-format
@imports-formatter -bl=false -module=github.com/apache/dubbo-go-pixiu
check-import-format:
@type imports-formatter >/dev/null 2>&1 || echo "imports-formatter is not installed, please install it first by run 'go install github.com/dubbogo/tools/cmd/imports-formatter@latest'"
# build pilot by docker-builder
export
# DEBUG = 1
RUN = ./common/scripts/run.sh
MAKE_DOCKER = $(RUN) make --no-print-directory -e -f Makefile.core.mk
%:
@$(MAKE_DOCKER) $@