blob: cb2c6577b5b735bd86ced4e81aa8d0c477eac031 [file] [log] [blame]
#
# 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) $@