|
- #
- # 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.
- #
-
- VERSION=$(shell cat "./VERSION" 2> /dev/null)
-
- GO_FLAGS := -ldflags "-X main.Branch=$(GIT_BRANCH) -X main.Revision=$(GIT_REVISION) -X main.Version=$(VERSION) -extldflags \"-static\" -s -w" -tags netgo
- GO = go
- GO_PATH = $(shell $(GO) env GOPATH)
- GO_OS = $(shell $(GO) env GOOS)
- ifeq ($(GO_OS), darwin)
- GO_OS = mac
- endif
- ifeq ($(shell uname -s), Darwin)
- SHA256_CMD = shasum -a 256
- else
- SHA256_CMD = sha256sum
- endif
-
- # License environment
- GO_LICENSE_CHECKER_DIR = license-header-checker-$(GO_OS)
- GO_LICENSE_CHECKER = $(GO_PATH)/bin/license-header-checker
- LICENSE_DIR = /tmp/tools/license
-
- # format import code
- format-import:
- go get -d github.com/dubbogo/tools/cmd/imports-formatter
- imports-formatter -path . -module seata.apache.org/seata-go -bl false
-
- unit-test:
- go test ./pkg/... -coverprofile=coverage.txt -covermode=atomic
-
- # Generate binaries for a Cortex release
- dist dist/seatago-linux-amd64 dist/seatago-darwin-amd64 dist/seatago-linux-amd64-sha-256 dist/seatago-darwin-amd64-sha-256:
- rm -fr ./dist
- mkdir -p ./dist
- GOOS="linux" GOARCH="amd64" CGO_ENABLED=0 go build $(GO_FLAGS) -o ./dist/seatago-linux-amd64 ./cmd
- GOOS="darwin" GOARCH="amd64" CGO_ENABLED=0 go build $(GO_FLAGS) -o ./dist/seatago-darwin-amd64 ./cmd
- $(SHA256_CMD) ./dist/seatago-darwin-amd64 | cut -d ' ' -f 1 > ./dist/seatago-darwin-amd64-sha-256
- $(SHA256_CMD) ./dist/seatago-linux-amd64 | cut -d ' ' -f 1 > ./dist/seatago-linux-amd64-sha-256
-
- # Generate binaries for a Cortex release
- build dist/seatago dist/seatago-sha-256:
- rm -fr ./dist
- mkdir -p ./dist
- CGO_ENABLED=0 go build $(GO_FLAGS) -o ./dist/seatago ./cmd
- $(SHA256_CMD) ./dist/seatago | cut -d ' ' -f 1 > ./dist/seatago-sha-256
-
- #docker-build:
- # docker build -t seatago/seatago:latest .
-
- integration-test:
- @go clean -testcache
- go test -tags integration -v ./test/...
-
- clean:
- @rm -rf coverage.txt
- @rm -rf dist
-
- prepareLic:
- echo 'The makefile is for ci test and has dependencies. Do not run it locally. If you want to run the unit tests, run command `go test ./...` directly.'
- $(GO_LICENSE_CHECKER) -version || (wget https://github.com/lsm-dev/license-header-checker/releases/download/v1.2.0/$(GO_LICENSE_CHECKER_DIR).zip -O $(GO_LICENSE_CHECKER_DIR).zip && unzip -o $(GO_LICENSE_CHECKER_DIR).zip && mkdir -p $(GO_PATH)/bin/ && cp $(GO_LICENSE_CHECKER_DIR)/64bit/license-header-checker $(GO_PATH)/bin/)
- ls /tmp/tools/license/license.txt || wget -P $(LICENSE_DIR) https://github.com/dubbogo/resources/raw/master/tools/license/license.txt
-
- .PHONY: license
- license: prepareLic
- $(GO_LICENSE_CHECKER) -v -a -r -i vendor $(LICENSE_DIR)/license.txt . go && [[ -z `git status -s` ]]
|