2019-04-25 17:06:53 +00:00
DIST := dist
2020-03-05 09:22:41 +00:00
export GO111MODULE = on
2021-09-23 16:01:07 +00:00
export CGO_ENABLED = 0
2019-04-25 17:06:53 +00:00
GO ?= go
SHASUM ?= shasum -a 256
export PATH := $( $( GO) env GOPATH) /bin:$( PATH)
2023-02-09 03:05:39 +00:00
GOFILES := $( shell find . -name "*.go" -type f ! -path "*/bindata.go" )
2019-04-25 17:06:53 +00:00
GOFMT ?= gofmt -s
i f n e q ( $( DRONE_TAG ) , )
VERSION ?= $( subst v,,$( DRONE_TAG) )
2019-04-26 03:41:21 +00:00
TEA_VERSION ?= $( VERSION)
2019-04-25 17:06:53 +00:00
e l s e
ifneq ( $( DRONE_BRANCH) ,)
VERSION ?= $( subst release/v,,$( DRONE_BRANCH) )
else
VERSION ?= master
endif
2019-04-26 03:41:21 +00:00
TEA_VERSION ?= $( shell git describe --tags --always | sed 's/-/+/' | sed 's/^v//' )
2019-04-25 17:06:53 +00:00
e n d i f
2021-03-30 11:13:23 +00:00
TEA_VERSION_TAG ?= $( shell sed 's/+/_/' <<< $( TEA_VERSION) )
2021-09-23 16:01:07 +00:00
TAGS ?=
2022-06-18 14:34:18 +00:00
SDK ?= $( shell $( GO) list -f '{{.Version}}' -m code.gitea.io/sdk/gitea)
LDFLAGS := -X " main.Version= $( TEA_VERSION) " -X " main.Tags= $( TAGS) " -X " main.SDK= $( SDK) " -s -w
2021-09-23 16:01:07 +00:00
# override to allow passing additional goflags via make CLI
2023-02-09 03:05:39 +00:00
override GOFLAGS : = $( GOFLAGS ) -tags '$( TAGS ) ' -ldflags '$( LDFLAGS ) '
2019-04-25 17:06:53 +00:00
2023-02-09 03:05:39 +00:00
PACKAGES ?= $( shell $( GO) list ./...)
2019-04-25 17:06:53 +00:00
SOURCES ?= $( shell find . -name "*.go" -type f)
2021-12-02 20:01:10 +00:00
# OS specific vars.
2019-04-25 17:06:53 +00:00
i f e q ( $( OS ) , W i n d o w s _ N T )
EXECUTABLE := tea.exe
2023-07-28 14:03:26 +00:00
VET_TOOL := gitea-vet.exe
2019-04-25 17:06:53 +00:00
e l s e
EXECUTABLE := tea
2023-07-28 14:03:26 +00:00
VET_TOOL := gitea-vet
2021-12-02 20:01:10 +00:00
ifneq ( $( shell uname -s) , OpenBSD)
override BUILDMODE := -buildmode= pie
endif
2019-04-25 17:06:53 +00:00
e n d i f
.PHONY : all
all : build
.PHONY : clean
clean :
2023-02-09 03:05:39 +00:00
$( GO) clean -i ./...
2019-04-26 03:41:21 +00:00
rm -rf $( EXECUTABLE) $( DIST)
2019-04-25 17:06:53 +00:00
.PHONY : fmt
fmt :
$( GOFMT) -w $( GOFILES)
.PHONY : vet
vet :
2020-04-28 13:02:21 +00:00
# Default vet
2023-02-09 03:05:39 +00:00
$( GO) vet $( PACKAGES)
2020-04-28 13:02:21 +00:00
# Custom vet
2023-02-09 03:05:39 +00:00
$( GO) build code.gitea.io/gitea-vet
2023-07-28 14:03:26 +00:00
$( GO) vet -vettool= $( VET_TOOL) $( PACKAGES)
2019-04-25 17:06:53 +00:00
.PHONY : lint
2022-03-28 23:11:11 +00:00
lint : install -lint -tools
2023-08-21 22:01:15 +00:00
$( GO) run github.com/mgechev/revive@latest -config .revive.toml ./... || exit 1
2019-04-25 17:06:53 +00:00
.PHONY : misspell -check
2022-03-28 23:11:11 +00:00
misspell-check : install -lint -tools
2023-08-21 22:01:15 +00:00
$( GO) run github.com/client9/misspell/cmd/misspell@latest -error -i unknwon,destory $( GOFILES)
2019-04-25 17:06:53 +00:00
.PHONY : misspell
2022-03-28 23:11:11 +00:00
misspell : install -lint -tools
2023-08-21 22:01:15 +00:00
$( GO) run github.com/client9/misspell/cmd/misspell@latest -w -i unknwon $( GOFILES)
2019-04-25 17:06:53 +00:00
.PHONY : fmt -check
fmt-check :
# get all go files and run go fmt on them
@diff= $$ ( $( GOFMT) -d $( GOFILES) ) ; \
if [ -n " $$ diff " ] ; then \
echo "Please run 'make fmt' and commit the result:" ; \
echo " $$ {diff} " ; \
exit 1; \
fi ;
2023-09-01 15:34:13 +00:00
.PHONY : docs
docs :
$( GO) run . docs --out docs/CLI.md
.PHONY : docs -check
docs-check :
@DIFF= $$ ( $( GO) run . docs | diff docs/CLI.md -) ; \
if [ -n " $$ DIFF " ] ; then \
echo "Please run 'make docs' and commit the result:" ; \
echo " $$ DIFF " ; \
exit 1; \
fi ;
2019-04-25 17:06:53 +00:00
.PHONY : test
test :
2023-02-09 03:05:39 +00:00
$( GO) test -tags= 'sqlite sqlite_unlock_notify' $( PACKAGES)
2019-04-25 17:06:53 +00:00
.PHONY : unit -test -coverage
unit-test-coverage :
2023-02-09 03:05:39 +00:00
$( GO) test -tags= 'sqlite sqlite_unlock_notify' -cover -coverprofile coverage.out $( PACKAGES) && echo "\n==>\033[32m Ok\033[m\n" || exit 1
2019-04-25 17:06:53 +00:00
2023-02-09 03:05:39 +00:00
.PHONY : tidy
tidy :
$( GO) mod tidy
2019-04-25 17:06:53 +00:00
.PHONY : check
check : test
.PHONY : install
2021-09-23 16:01:07 +00:00
install : $( SOURCES )
2023-04-17 21:08:50 +00:00
@echo " installing to $( shell $( GO) env GOPATH) /bin/ $( EXECUTABLE) "
2023-08-21 22:01:15 +00:00
$( GO) install -v $( BUILDMODE) $( GOFLAGS)
2019-04-25 17:06:53 +00:00
.PHONY : build
build : $( EXECUTABLE )
$(EXECUTABLE) : $( SOURCES )
2021-12-02 20:01:10 +00:00
$( GO) build $( BUILDMODE) $( GOFLAGS) -o $@
2019-04-25 17:06:53 +00:00
2021-03-30 11:13:23 +00:00
.PHONY : build -image
build-image :
docker build --build-arg VERSION = $( TEA_VERSION) -t gitea/tea:$( TEA_VERSION_TAG) .
2019-04-25 17:06:53 +00:00
.PHONY : release
2022-03-29 00:29:47 +00:00
release : release -dirs install -release -tools release -os release -compress release -check
2019-04-25 17:06:53 +00:00
.PHONY : release -dirs
release-dirs :
2023-07-28 14:03:26 +00:00
mkdir -p $( DIST) /release
2019-04-25 17:06:53 +00:00
2020-12-08 17:45:48 +00:00
.PHONY : release -os
release-os :
2023-08-21 22:01:15 +00:00
CGO_ENABLED = 0 $( GO) run github.com/mitchellh/gox@latest -verbose -cgo= false $( GOFLAGS) -osarch= '!darwin/386 !darwin/arm' -os= "windows linux darwin" -arch= "386 amd64 arm arm64" -output= " $( DIST) /release/tea- $( VERSION) -{{.OS}}-{{.Arch}} "
2019-04-25 17:06:53 +00:00
2019-04-27 13:01:07 +00:00
.PHONY : release -compress
2022-03-28 23:11:11 +00:00
release-compress : install -release -tools
2023-08-21 22:01:15 +00:00
cd $( DIST) /release/; for file in ` find . -type f -name "*" ` ; do echo " compressing $$ {file} " && $( GO) run github.com/ulikunitz/xz/cmd/gxz@latest -k -9 $$ { file} ; done ;
2019-04-27 13:01:07 +00:00
2019-04-25 17:06:53 +00:00
.PHONY : release -check
2022-03-28 23:11:11 +00:00
release-check : install -release -tools
2019-04-25 17:06:53 +00:00
cd $( DIST) /release/; for file in ` find . -type f -name "*" ` ; do echo " checksumming $$ {file} " && $( SHASUM) ` echo $$ { file} | sed 's/^..//' ` > $$ { file} .sha256; done ;
2022-03-28 23:11:11 +00:00
### tools
install-release-tools :
@hash gox > /dev/null 2>& 1; if [ $$ ? -ne 0 ] ; then \
$( GO) install github.com/mitchellh/gox@latest; \
fi
@hash gxz > /dev/null 2>& 1; if [ $$ ? -ne 0 ] ; then \
$( GO) install github.com/ulikunitz/xz/cmd/gxz@latest; \
fi
install-lint-tools :
@hash revive > /dev/null 2>& 1; if [ $$ ? -ne 0 ] ; then \
$( GO) install github.com/mgechev/revive@latest; \
fi
@hash misspell > /dev/null 2>& 1; if [ $$ ? -ne 0 ] ; then \
$( GO) install github.com/client9/misspell/cmd/misspell@latest; \
fi