2020-04-19 13:17:02 +02:00
i f e q ( $( USE_REPO_TEST_DIR ) , 1 )
# This rule replaces the whole Makefile when we're trying to use /tmp repository temporary files
location = $( CURDIR) /$( word $( words $( MAKEFILE_LIST) ) ,$( MAKEFILE_LIST) )
self := $( location)
% :
@tmpdir= ` mktemp --tmpdir -d` ; \
echo Using temporary directory $$ tmpdir for test repositories ; \
USE_REPO_TEST_DIR = $( MAKE) -f $( self) --no-print-directory REPO_TEST_DIR = $$ tmpdir/ $@ ; \
STATUS = $$ ? ; rm -r " $$ tmpdir " ; exit $$ STATUS
e l s e
# This is the "normal" part of the Makefile
2016-11-04 13:58:55 +01:00
DIST := dist
2020-02-19 04:10:25 +01:00
DIST_DIRS := $( DIST) /binaries $( DIST) /release
2016-11-10 17:24:48 +01:00
IMPORT := code.gitea.io/gitea
2017-06-15 15:51:23 +02:00
2017-08-16 02:46:41 +02:00
GO ?= go
2019-04-14 17:06:43 +02:00
SHASUM ?= shasum -a 256
2020-02-02 03:43:35 +01:00
HAS_GO = $( shell hash $( GO) > /dev/null 2>& 1 && echo "GO" || echo "NOGO" )
2020-03-09 01:11:39 +01:00
COMMA := ,
2020-02-02 03:43:35 +01:00
2022-08-07 18:25:03 +02:00
XGO_VERSION := go-1.19.x
2022-03-16 03:50:26 +01:00
2022-07-20 09:53:58 +02:00
AIR_PACKAGE ?= github.com/cosmtrek/air@v1.40.4
EDITORCONFIG_CHECKER_PACKAGE ?= github.com/editorconfig-checker/editorconfig-checker/cmd/editorconfig-checker@2.5.0
ERRCHECK_PACKAGE ?= github.com/kisielk/errcheck@v1.6.1
2022-05-10 23:55:54 +02:00
GOFUMPT_PACKAGE ?= mvdan.cc/gofumpt@v0.3.1
2022-07-22 04:22:44 +02:00
GOLANGCI_LINT_PACKAGE ?= github.com/golangci/golangci-lint/cmd/golangci-lint@v1.47.0
2022-03-16 03:50:26 +01:00
GXZ_PAGAGE ?= github.com/ulikunitz/xz/cmd/gxz@v0.5.10
MISSPELL_PACKAGE ?= github.com/client9/misspell/cmd/misspell@v0.3.4
2022-08-31 04:15:45 +02:00
SWAGGER_PACKAGE ?= github.com/go-swagger/go-swagger/cmd/swagger@v0.30.0
2022-03-16 03:50:26 +01:00
XGO_PACKAGE ?= src.techknowlogick.com/xgo@latest
2022-09-04 00:20:46 +02:00
GO_LICENSES_PACKAGE ?= github.com/google/go-licenses@v1.3.0
2022-09-11 09:02:18 +02:00
GOVULNCHECK_PACKAGE ?= golang.org/x/vuln/cmd/govulncheck@latest
2020-03-20 15:29:31 +01:00
2020-07-21 22:41:03 +02:00
DOCKER_IMAGE ?= gitea/gitea
DOCKER_TAG ?= latest
DOCKER_REF := $( DOCKER_IMAGE) :$( DOCKER_TAG)
2020-02-02 03:43:35 +01:00
i f e q ( $( HAS_GO ) , G O )
GOPATH ?= $( shell $( GO) env GOPATH)
export PATH := $( GOPATH) /bin:$( PATH)
2020-06-06 01:57:25 +02:00
CGO_EXTRA_CFLAGS := -DSQLITE_MAX_VARIABLE_NUMBER= 32766
CGO_CFLAGS ?= $( shell $( GO) env CGO_CFLAGS) $( CGO_EXTRA_CFLAGS)
2020-02-02 03:43:35 +01:00
e n d i f
2017-06-15 15:51:23 +02:00
i f e q ( $( OS ) , W i n d o w s _ N T )
2020-08-24 23:46:41 +02:00
GOFLAGS := -v -buildmode= exe
2019-04-29 20:08:21 +02:00
EXECUTABLE ?= gitea.exe
2021-05-29 09:37:21 +02:00
e l s e i f e q ( $( OS ) , W i n d o w s )
GOFLAGS := -v -buildmode= exe
EXECUTABLE ?= gitea.exe
2017-06-15 15:51:23 +02:00
e l s e
2020-08-24 23:46:41 +02:00
GOFLAGS := -v
2019-04-29 20:08:21 +02:00
EXECUTABLE ?= gitea
2020-07-27 22:13:15 +02:00
e n d i f
i f e q ( $( shell sed --version 2>/dev /null | grep -q GNU && echo gnu ) , g n u )
SED_INPLACE := sed -i
e l s e
SED_INPLACE := sed -i ''
2017-06-15 15:51:23 +02:00
e n d i f
2017-04-05 10:10:32 +02:00
EXTRA_GOFLAGS ?=
2022-02-05 19:31:57 +01:00
MAKE_VERSION := $( shell " $( MAKE) " -v | head -n 1)
2020-02-01 21:15:32 +01:00
MAKE_EVIDENCE_DIR := .make_evidence
2019-04-02 18:10:11 +02:00
2021-06-02 17:34:11 +02:00
i f e q ( $( RACE_ENABLED ) , t r u e )
GOFLAGS += -race
GOTESTFLAGS += -race
2020-01-29 16:43:07 +01:00
e n d i f
2020-02-22 10:15:11 +01:00
STORED_VERSION_FILE := VERSION
2018-07-12 05:32:01 +02:00
i f n e q ( $( DRONE_TAG ) , )
VERSION ?= $( subst v,,$( DRONE_TAG) )
2019-03-19 03:29:07 +01:00
GITEA_VERSION ?= $( VERSION)
2018-07-12 05:32:01 +02:00
e l s e
ifneq ( $( DRONE_BRANCH) ,)
VERSION ?= $( subst release/v,,$( DRONE_BRANCH) )
else
2021-05-04 18:16:23 +02:00
VERSION ?= main
2018-07-12 05:32:01 +02:00
endif
2020-02-22 10:15:11 +01:00
STORED_VERSION = $( shell cat $( STORED_VERSION_FILE) 2>/dev/null)
ifneq ( $( STORED_VERSION) ,)
GITEA_VERSION ?= $( STORED_VERSION)
else
GITEA_VERSION ?= $( shell git describe --tags --always | sed 's/-/+/' | sed 's/^v//' )
endif
2018-07-12 05:32:01 +02:00
e n d i f
2019-04-29 20:08:21 +02:00
LDFLAGS := $( LDFLAGS) -X " main.MakeVersion= $( MAKE_VERSION) " -X " main.Version= $( GITEA_VERSION) " -X " main.Tags= $( TAGS) "
2015-11-03 18:16:43 +01:00
2021-02-22 08:01:57 +01:00
LINUX_ARCHS ?= linux/amd64,linux/386,linux/arm-5,linux/arm-6,linux/arm64
2022-11-02 09:54:36 +01:00
GO_PACKAGES ?= $( filter-out code.gitea.io/gitea/tests/integration/migration-test code.gitea.io/gitea/tests code.gitea.io/gitea/tests/integration code.gitea.io/gitea/tests/e2e,$( shell $( GO) list ./... | grep -v /vendor/) )
GO_TEST_PACKAGES ?= $( filter-out $( shell $( GO) list code.gitea.io/gitea/models/migrations/...) code.gitea.io/gitea/tests/integration/migration-test code.gitea.io/gitea/tests code.gitea.io/gitea/tests/integration code.gitea.io/gitea/tests/e2e,$( shell $( GO) list ./... | grep -v /vendor/) )
2019-12-05 04:41:38 +01:00
2021-04-02 02:11:04 +02:00
FOMANTIC_WORK_DIR := web_src/fomantic
2020-06-29 02:18:12 +02:00
2020-10-28 22:51:03 +01:00
WEBPACK_SOURCES := $( shell find web_src/js web_src/less -type f)
2020-03-29 13:56:58 +02:00
WEBPACK_CONFIGS := webpack.config.js
2020-01-28 08:30:39 +01:00
WEBPACK_DEST := public/js/index.js public/css/index.css
2020-07-29 20:44:23 +02:00
WEBPACK_DEST_ENTRIES := public/js public/css public/fonts public/img/webpack public/serviceworker.js
2020-03-03 20:51:11 +01:00
2019-12-05 04:41:38 +01:00
BINDATA_DEST := modules/public/bindata.go modules/options/bindata.go modules/templates/bindata.go
2020-01-27 02:05:38 +01:00
BINDATA_HASH := $( addsuffix .hash,$( BINDATA_DEST) )
2019-12-05 04:41:38 +01:00
2022-09-05 08:04:18 +02:00
GENERATED_GO_DEST := modules/charset/invisible_gen.go modules/charset/ambiguous_gen.go
2020-07-12 11:10:56 +02:00
SVG_DEST_DIR := public/img/svg
2020-07-27 20:05:42 +02:00
AIR_TMP_DIR := .air
2022-09-04 00:20:46 +02:00
GO_LICENSE_TMP_DIR := .go-licenses
GO_LICENSE_FILE := assets/go-licenses.json
2020-03-09 01:11:39 +01:00
TAGS ?=
TAGS_SPLIT := $( subst $( COMMA) , ,$( TAGS) )
TAGS_EVIDENCE := $( MAKE_EVIDENCE_DIR) /tags
2020-12-17 15:00:47 +01:00
TEST_TAGS ?= sqlite sqlite_unlock_notify
2022-09-04 00:20:46 +02:00
TAR_EXCLUDES := .git data indexers queues log node_modules $( EXECUTABLE) $( FOMANTIC_WORK_DIR) /node_modules $( DIST) $( MAKE_EVIDENCE_DIR) $( AIR_TMP_DIR) $( GO_LICENSE_TMP_DIR)
2021-04-09 07:08:14 +02:00
2022-09-02 21:18:23 +02:00
GO_DIRS := cmd tests models modules routers build services tools
2022-10-16 10:11:17 +02:00
WEB_DIRS := web_src/js web_src/less
2020-12-17 15:00:47 +01:00
2020-03-09 01:11:39 +01:00
GO_SOURCES := $( wildcard *.go)
GO_SOURCES += $( shell find $( GO_DIRS) -type f -name "*.go" -not -path modules/options/bindata.go -not -path modules/public/bindata.go -not -path modules/templates/bindata.go)
2022-09-05 08:04:18 +02:00
GO_SOURCES += $( GENERATED_GO_DEST)
GO_SOURCES_NO_BINDATA := $( GO_SOURCES)
2020-03-09 01:11:39 +01:00
i f e q ( $( filter $ ( TAGS_SPLIT ) ,bindata ) , b i n d a t a )
GO_SOURCES += $( BINDATA_DEST)
2022-09-05 08:04:18 +02:00
GENERATED_GO_DEST += $( BINDATA_DEST)
2020-03-09 01:11:39 +01:00
e n d i f
2022-09-02 21:18:23 +02:00
# Force installation of playwright dependencies by setting this flag
i f d e f D E P S _ P L A Y W R I G H T
PLAYWRIGHT_FLAGS += --with-deps
e n d i f
2018-07-28 02:19:01 +02:00
SWAGGER_SPEC := templates/swagger/v1_json.tmpl
2021-03-12 05:43:04 +01:00
SWAGGER_SPEC_S_TMPL := s| "basePath" : *"/api/v1" | "basePath" : "{{AppSubUrl \| JSEscape \| Safe}}/api/v1" | g
SWAGGER_SPEC_S_JSON := s| "basePath" : *"{{AppSubUrl \| JSEscape \| Safe}}/api/v1" | "basePath" : "/api/v1" | g
2020-10-14 06:06:00 +02:00
SWAGGER_EXCLUDE := code.gitea.io/sdk
2019-04-01 17:27:40 +02:00
SWAGGER_NEWLINE_COMMAND := -e '$$a\'
2018-07-28 02:19:01 +02:00
2017-09-13 08:03:20 +02:00
TEST_MYSQL_HOST ?= mysql:3306
TEST_MYSQL_DBNAME ?= testgitea
TEST_MYSQL_USERNAME ?= root
TEST_MYSQL_PASSWORD ?=
2019-03-17 20:17:18 +01:00
TEST_MYSQL8_HOST ?= mysql8:3306
TEST_MYSQL8_DBNAME ?= testgitea
TEST_MYSQL8_USERNAME ?= root
TEST_MYSQL8_PASSWORD ?=
2017-09-13 08:03:20 +02:00
TEST_PGSQL_HOST ?= pgsql:5432
TEST_PGSQL_DBNAME ?= testgitea
TEST_PGSQL_USERNAME ?= postgres
TEST_PGSQL_PASSWORD ?= postgres
2020-01-20 16:45:14 +01:00
TEST_PGSQL_SCHEMA ?= gtestschema
2018-12-12 02:01:41 +01:00
TEST_MSSQL_HOST ?= mssql:1433
TEST_MSSQL_DBNAME ?= gitea
TEST_MSSQL_USERNAME ?= sa
TEST_MSSQL_PASSWORD ?= MwantsaSecurePassword1
2017-09-13 08:03:20 +02:00
2016-11-04 13:58:55 +01:00
.PHONY : all
2016-11-18 09:57:30 +01:00
all : build
2016-08-30 23:06:05 +02:00
2020-01-05 18:40:02 +01:00
.PHONY : help
help :
@echo "Make Routines:"
2020-11-28 07:12:22 +01:00
@echo " - \"\" equivalent to \"build\""
2020-05-15 01:28:26 +02:00
@echo " - build build everything"
@echo " - frontend build frontend files"
@echo " - backend build backend files"
2020-09-05 02:55:06 +02:00
@echo " - watch watch everything and continuously rebuild"
2020-08-16 23:43:09 +02:00
@echo " - watch-frontend watch frontend files and continuously rebuild"
@echo " - watch-backend watch backend files and continuously rebuild"
2020-05-15 01:28:26 +02:00
@echo " - clean delete backend and integration files"
@echo " - clean-all delete backend, frontend and integration files"
2022-02-12 08:08:53 +01:00
@echo " - deps install dependencies"
@echo " - deps-frontend install frontend dependencies"
@echo " - deps-backend install backend dependencies"
2020-05-15 01:28:26 +02:00
@echo " - lint lint everything"
@echo " - lint-frontend lint frontend files"
@echo " - lint-backend lint backend files"
2020-08-17 18:58:07 +02:00
@echo " - checks run various consistency checks"
@echo " - checks-frontend check frontend files"
@echo " - checks-backend check backend files"
2021-04-08 12:41:57 +02:00
@echo " - test test everything"
@echo " - test-frontend test frontend files"
@echo " - test-backend test backend files"
2022-09-02 21:18:23 +02:00
@echo " - test-e2e[\#TestSpecificName] test end to end using playwright"
2020-05-15 01:28:26 +02:00
@echo " - webpack build webpack files"
2020-07-12 11:10:56 +02:00
@echo " - svg build svg files"
2020-05-15 01:28:26 +02:00
@echo " - fomantic build fomantic files"
@echo " - generate run \"go generate\""
@echo " - fmt format the Go code"
2020-09-02 18:57:08 +02:00
@echo " - generate-license update license files"
@echo " - generate-gitignore update gitignore files"
2021-02-24 23:36:48 +01:00
@echo " - generate-manpage generate manpage"
2020-05-15 01:28:26 +02:00
@echo " - generate-swagger generate the swagger spec from code comments"
@echo " - swagger-validate check if the swagger spec is valid"
@echo " - golangci-lint run golangci-lint linter"
2022-09-04 00:20:46 +02:00
@echo " - go-licenses regenerate go licenses"
2020-05-15 01:28:26 +02:00
@echo " - vet examines Go source code and reports suspicious constructs"
2022-09-09 17:33:01 +02:00
@echo " - tidy run go mod tidy"
2020-11-28 07:12:22 +01:00
@echo " - test[\#TestSpecificName] run unit test"
2020-05-15 01:28:26 +02:00
@echo " - test-sqlite[\#TestSpecificName] run integration test for sqlite"
@echo " - pr#<index> build and start gitea from a PR with integration test data loaded"
2020-01-05 18:40:02 +01:00
2019-12-05 04:41:38 +01:00
.PHONY : go -check
go-check :
2022-07-14 10:58:14 +02:00
$( eval MIN_GO_VERSION_STR := $( shell grep -Eo '^go\s+[0-9]+\.[0-9]+' go.mod | cut -d' ' -f2) )
$( eval MIN_GO_VERSION := $( shell printf "%03d%03d" $( shell echo '$(MIN_GO_VERSION_STR)' | tr '.' ' ' ) ) )
$( eval GO_VERSION := $( shell printf "%03d%03d" $( shell $( GO) version | grep -Eo '[0-9]+\.[0-9]+' | tr '.' ' ' ) ; ) )
2020-03-20 15:29:31 +01:00
@if [ " $( GO_VERSION) " -lt " $( MIN_GO_VERSION) " ] ; then \
2022-03-26 11:39:31 +01:00
echo " Gitea requires Go $( MIN_GO_VERSION_STR) or greater to build. You can get it at https://go.dev/dl/ " ; \
2019-12-05 04:41:38 +01:00
exit 1; \
fi
2020-01-14 01:06:54 +01:00
.PHONY : git -check
git-check :
@if git lfs >/dev/null 2>& 1 ; then : ; else \
echo "Gitea requires git with lfs support to run tests." ; \
exit 1; \
fi
2019-12-05 04:41:38 +01:00
.PHONY : node -check
node-check :
2022-03-26 11:39:31 +01:00
$( eval MIN_NODE_VERSION_STR := $( shell grep -Eo '"node":.*[0-9.]+"' package.json | sed -n 's/.*[^0-9.]\([0-9.]*\)"/\1/p' ) )
$( eval MIN_NODE_VERSION := $( shell printf "%03d%03d%03d" $( shell echo '$(MIN_NODE_VERSION_STR)' | tr '.' ' ' ) ) )
2020-03-25 23:21:33 +01:00
$( eval NODE_VERSION := $( shell printf "%03d%03d%03d" $( shell node -v | cut -c2- | tr '.' ' ' ) ; ) )
2019-12-05 04:41:38 +01:00
$( eval NPM_MISSING := $( shell hash npm > /dev/null 2>& 1 || echo 1) )
2020-03-20 15:29:31 +01:00
@if [ " $( NODE_VERSION) " -lt " $( MIN_NODE_VERSION) " -o " $( NPM_MISSING) " = "1" ] ; then \
2022-03-26 11:39:31 +01:00
echo " Gitea requires Node.js $( MIN_NODE_VERSION_STR) or greater and npm to build. You can get it at https://nodejs.org/en/download/ " ; \
2019-12-05 04:41:38 +01:00
exit 1; \
fi
.PHONY : clean -all
clean-all : clean
2021-05-08 11:57:48 +02:00
rm -rf $( WEBPACK_DEST_ENTRIES) node_modules
2019-12-05 04:41:38 +01:00
2016-11-04 13:58:55 +01:00
.PHONY : clean
clean :
2017-08-16 02:46:41 +02:00
$( GO) clean -i ./...
2020-01-27 02:05:38 +01:00
rm -rf $( EXECUTABLE) $( DIST) $( BINDATA_DEST) $( BINDATA_HASH) \
2017-09-16 22:16:21 +02:00
integrations*.test \
2022-09-02 21:18:23 +02:00
e2e*.test \
tests/integration/gitea-integration-pgsql/ tests/integration/gitea-integration-mysql/ tests/integration/gitea-integration-mysql8/ tests/integration/gitea-integration-sqlite/ \
tests/integration/gitea-integration-mssql/ tests/integration/indexers-mysql/ tests/integration/indexers-mysql8/ tests/integration/indexers-pgsql tests/integration/indexers-sqlite \
tests/integration/indexers-mssql tests/mysql.ini tests/mysql8.ini tests/pgsql.ini tests/mssql.ini man/ \
tests/e2e/gitea-e2e-pgsql/ tests/e2e/gitea-e2e-mysql/ tests/e2e/gitea-e2e-mysql8/ tests/e2e/gitea-e2e-sqlite/ \
tests/e2e/gitea-e2e-mssql/ tests/e2e/indexers-mysql/ tests/e2e/indexers-mysql8/ tests/e2e/indexers-pgsql/ tests/e2e/indexers-sqlite/ \
tests/e2e/indexers-mssql/ tests/e2e/reports/ tests/e2e/test-artifacts/ tests/e2e/test-snapshots/
2016-11-04 13:58:55 +01:00
.PHONY : fmt
2017-09-20 13:58:29 +02:00
fmt :
2022-10-16 10:11:17 +02:00
GOFUMPT_PACKAGE = $( GOFUMPT_PACKAGE) $( GO) run build/code-batch-process.go gitea-fmt -w '{file-list}'
2022-08-31 17:58:54 +02:00
$( eval TEMPLATES := $( shell find templates -type f -name '*.tmpl' ) )
2022-09-05 08:04:18 +02:00
@# strip whitespace after '{{' and before ` } } ` unless there is only whitespace before it
2022-08-25 23:55:52 +02:00
@$( SED_INPLACE) -e 's/{{[ ]\{1,\}/{{/g' -e '/^[ ]\{1,\}}}/! s/[ ]\{1,\}}}/}}/g' $( TEMPLATES)
2016-11-04 13:58:55 +01:00
2022-10-16 10:11:17 +02:00
.PHONY : fmt -check
fmt-check : fmt
@diff= $$ ( git diff $( GO_SOURCES) templates $( WEB_DIRS) ) ; \
if [ -n " $$ diff " ] ; then \
echo "Please run 'make fmt' and commit the result:" ; \
echo " $$ {diff} " ; \
exit 1; \
fi
.PHONY : misspell -check
misspell-check :
2022-10-18 18:52:25 +02:00
go run $( MISSPELL_PACKAGE) -error $( GO_DIRS) $( WEB_DIRS)
2022-10-16 10:11:17 +02:00
2016-11-04 13:58:55 +01:00
.PHONY : vet
vet :
2020-12-03 02:54:30 +01:00
@echo "Running go vet..."
2022-01-15 00:16:05 +01:00
@GOOS= GOARCH = $( GO) build code.gitea.io/gitea-vet
2020-12-03 02:54:30 +01:00
@$( GO) vet -vettool= gitea-vet $( GO_PACKAGES)
2016-11-04 13:58:55 +01:00
2020-02-11 20:42:03 +01:00
.PHONY : $( TAGS_EVIDENCE )
$(TAGS_EVIDENCE) :
@mkdir -p $( MAKE_EVIDENCE_DIR)
@echo " $( TAGS) " > $( TAGS_EVIDENCE)
i f n e q "$(TAGS)" "$(shell cat $(TAGS_EVIDENCE) 2>/dev/null)"
TAGS_PREREQ := $( TAGS_EVIDENCE)
e n d i f
2017-06-15 15:51:23 +02:00
.PHONY : generate -swagger
2022-09-05 08:04:18 +02:00
generate-swagger : $( SWAGGER_SPEC )
$(SWAGGER_SPEC) : $( GO_SOURCES_NO_BINDATA )
2022-03-16 03:50:26 +01:00
$( GO) run $( SWAGGER_PACKAGE) generate spec -x " $( SWAGGER_EXCLUDE) " -o './$(SWAGGER_SPEC)'
2018-07-28 02:19:01 +02:00
$( SED_INPLACE) '$(SWAGGER_SPEC_S_TMPL)' './$(SWAGGER_SPEC)'
2019-04-01 17:27:40 +02:00
$( SED_INPLACE) $( SWAGGER_NEWLINE_COMMAND) './$(SWAGGER_SPEC)'
2017-07-12 04:28:57 +02:00
2018-04-20 11:13:50 +02:00
.PHONY : swagger -check
swagger-check : generate -swagger
2018-07-28 02:19:01 +02:00
@diff= $$ ( git diff '$(SWAGGER_SPEC)' ) ; \
2018-04-20 11:13:50 +02:00
if [ -n " $$ diff " ] ; then \
echo "Please run 'make generate-swagger' and commit the result:" ; \
echo " $$ {diff} " ; \
exit 1; \
2020-11-29 22:39:36 +01:00
fi
2018-04-20 11:13:50 +02:00
2018-06-02 13:29:12 +02:00
.PHONY : swagger -validate
swagger-validate :
2018-07-28 02:19:01 +02:00
$( SED_INPLACE) '$(SWAGGER_SPEC_S_JSON)' './$(SWAGGER_SPEC)'
2022-03-16 03:50:26 +01:00
$( GO) run $( SWAGGER_PACKAGE) validate './$(SWAGGER_SPEC)'
2018-07-28 02:19:01 +02:00
$( SED_INPLACE) '$(SWAGGER_SPEC_S_TMPL)' './$(SWAGGER_SPEC)'
2018-06-02 13:29:12 +02:00
2016-11-25 09:12:06 +01:00
.PHONY : errcheck
errcheck :
2020-12-03 02:54:30 +01:00
@echo "Running errcheck..."
2022-03-16 03:50:26 +01:00
$( GO) run $( ERRCHECK_PACKAGE) $( GO_PACKAGES)
2016-11-25 09:12:06 +01:00
2020-08-16 23:43:09 +02:00
.PHONY : checks
checks : checks -frontend checks -backend
2020-03-29 13:56:58 +02:00
2020-08-16 23:43:09 +02:00
.PHONY : checks -frontend
2022-01-15 21:06:29 +01:00
checks-frontend : lockfile -check svg -check
2020-08-16 23:43:09 +02:00
.PHONY : checks -backend
2022-10-16 10:11:17 +02:00
checks-backend : tidy -check swagger -check fmt -check misspell -check swagger -validate
2020-08-16 23:43:09 +02:00
.PHONY : lint
lint : lint -frontend lint -backend
2020-03-29 13:56:58 +02:00
.PHONY : lint -frontend
2020-08-16 23:43:09 +02:00
lint-frontend : node_modules
2022-10-10 14:02:20 +02:00
npx eslint --color --max-warnings= 0 --ext js,vue web_src/js build *.config.js docs/assets/js tests/e2e
2020-12-27 15:24:27 +01:00
npx stylelint --color --max-warnings= 0 web_src/less
2022-07-12 01:07:16 +02:00
npx spectral lint -q -F hint $( SWAGGER_SPEC)
2022-07-28 03:22:47 +02:00
npx markdownlint docs *.md
2020-03-29 13:56:58 +02:00
2020-08-16 23:43:09 +02:00
.PHONY : lint -backend
2022-02-18 05:33:58 +01:00
lint-backend : golangci -lint vet editorconfig -checker
2020-08-16 23:43:09 +02:00
2020-09-05 02:55:06 +02:00
.PHONY : watch
watch :
bash tools/watch.sh
2020-04-12 05:50:59 +02:00
.PHONY : watch -frontend
2020-10-28 00:44:06 +01:00
watch-frontend : node -check node_modules
2020-05-24 09:36:40 +02:00
rm -rf $( WEBPACK_DEST_ENTRIES)
2020-12-27 15:24:27 +01:00
NODE_ENV = development npx webpack --watch --progress
2020-04-12 05:50:59 +02:00
2020-07-27 20:05:42 +02:00
.PHONY : watch -backend
watch-backend : go -check
2022-03-16 03:50:26 +01:00
$( GO) run $( AIR_PACKAGE) -c .air.toml
2020-07-27 20:05:42 +02:00
2016-11-04 13:58:55 +01:00
.PHONY : test
2021-04-08 12:41:57 +02:00
test : test -frontend test -backend
.PHONY : test -backend
test-backend :
2021-07-17 19:09:56 +02:00
@echo " Running go test with $( GOTESTFLAGS) -tags ' $( TEST_TAGS) '... "
2022-11-02 09:54:36 +01:00
@$( GO) test $( GOTESTFLAGS) -tags= '$(TEST_TAGS)' $( GO_TEST_PACKAGES)
2017-05-24 18:13:18 +02:00
2021-04-08 12:41:57 +02:00
.PHONY : test -frontend
2021-05-14 08:28:51 +02:00
test-frontend : node_modules
2022-10-14 15:36:16 +02:00
npx vitest
2021-04-08 12:41:57 +02:00
2020-03-06 07:47:40 +01:00
.PHONY : test -check
2020-01-26 21:07:12 +01:00
test-check :
2020-12-03 02:54:30 +01:00
@echo "Running test-check..." ;
2020-01-26 21:07:12 +01:00
@diff= $$ ( git status -s) ; \
if [ -n " $$ diff " ] ; then \
2021-04-08 12:41:57 +02:00
echo "make test-backend has changed files in the source tree:" ; \
2020-01-26 21:07:12 +01:00
echo " $$ {diff} " ; \
echo "You should change the tests to create these files in a temporary directory." ; \
echo "Do not simply add these files to .gitignore" ; \
exit 1; \
2020-11-29 22:39:36 +01:00
fi
2020-01-26 21:07:12 +01:00
2019-10-16 15:42:42 +02:00
.PHONY : test \#%
test\#% :
2020-12-17 15:00:47 +01:00
@echo " Running go test with -tags ' $( TEST_TAGS) '... "
2022-11-02 09:54:36 +01:00
@$( GO) test $( GOTESTFLAGS) -tags= '$(TEST_TAGS)' -run $( subst .,/,$* ) $( GO_TEST_PACKAGES)
2019-10-16 15:42:42 +02:00
2017-09-07 19:22:15 +02:00
.PHONY : coverage
2017-09-13 14:57:55 +02:00
coverage :
2021-09-01 04:43:29 +02:00
grep '^\(mode: .*\)\|\(.*:[0-9]\+\.[0-9]\+,[0-9]\+\.[0-9]\+ [0-9]\+ [0-9]\+\)$$' coverage.out > coverage-bodged.out
grep '^\(mode: .*\)\|\(.*:[0-9]\+\.[0-9]\+,[0-9]\+\.[0-9]\+ [0-9]\+ [0-9]\+\)$$' integration.coverage.out > integration.coverage-bodged.out
2022-08-12 22:13:31 +02:00
$( GO) run build/gocovmerge.go integration.coverage-bodged.out coverage-bodged.out > coverage.all
2017-06-15 11:38:33 +02:00
.PHONY : unit -test -coverage
unit-test-coverage :
2021-07-17 19:09:56 +02:00
@echo " Running unit-test-coverage $( GOTESTFLAGS) -tags ' $( TEST_TAGS) '... "
2022-11-02 09:54:36 +01:00
@$( GO) test $( GOTESTFLAGS) -timeout= 20m -tags= '$(TEST_TAGS)' -cover -coverprofile coverage.out $( GO_TEST_PACKAGES) && echo "\n==>\033[32m Ok\033[m\n" || exit 1
2015-11-08 20:31:49 +01:00
2022-05-25 02:19:13 +02:00
.PHONY : tidy
tidy :
$( eval MIN_GO_VERSION := $( shell grep -Eo '^go\s+[0-9]+\.[0-9.]+' go.mod | cut -d' ' -f2) )
$( GO) mod tidy -compat= $( MIN_GO_VERSION)
2022-10-10 20:45:02 +02:00
@$( MAKE) --no-print-directory $( GO_LICENSE_FILE)
2022-05-25 02:19:13 +02:00
2022-09-09 17:33:01 +02:00
vendor : go .mod go .sum
2022-05-25 02:19:13 +02:00
$( GO) mod vendor
2022-09-09 17:33:01 +02:00
@touch vendor
2017-05-02 15:22:21 +02:00
2022-09-02 03:58:09 +02:00
.PHONY : tidy -check
tidy-check : tidy
2022-10-10 20:45:02 +02:00
@diff= $$ ( git diff go.mod go.sum $( GO_LICENSE_FILE) ) ; \
2018-05-21 14:34:20 +02:00
if [ -n " $$ diff " ] ; then \
2022-05-25 02:19:13 +02:00
echo "Please run 'make tidy' and commit the result:" ; \
2018-05-21 14:34:20 +02:00
echo " $$ {diff} " ; \
exit 1; \
2020-11-29 22:39:36 +01:00
fi
2017-04-24 16:31:46 +02:00
2022-09-04 00:20:46 +02:00
.PHONY : go -licenses
2022-09-09 17:33:01 +02:00
go-licenses : $( GO_LICENSE_FILE )
2022-09-04 00:20:46 +02:00
2022-09-09 17:33:01 +02:00
$(GO_LICENSE_FILE) : go .mod go .sum
2022-09-07 23:35:54 +02:00
-$( GO) run $( GO_LICENSES_PACKAGE) save . --force --save_path= $( GO_LICENSE_TMP_DIR) 2>/dev/null
$( GO) run build/generate-go-licenses.go $( GO_LICENSE_TMP_DIR) $( GO_LICENSE_FILE)
@rm -rf $( GO_LICENSE_TMP_DIR)
2022-09-04 00:20:46 +02:00
2020-04-19 13:17:02 +02:00
generate-ini-sqlite :
sed -e 's|{{REPO_TEST_DIR}}|${REPO_TEST_DIR}|g' \
2022-09-02 21:18:23 +02:00
-e 's|{{TEST_LOGGER}}|$(or $(TEST_LOGGER),test$(COMMA)file)|g' \
-e 's|{{TEST_TYPE}}|$(or $(TEST_TYPE),integration)|g' \
tests/sqlite.ini.tmpl > tests/sqlite.ini
2020-04-19 13:17:02 +02:00
2017-04-25 09:24:51 +02:00
.PHONY : test -sqlite
2020-04-19 13:17:02 +02:00
test-sqlite : integrations .sqlite .test generate -ini -sqlite
2022-09-02 21:18:23 +02:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/sqlite.ini ./integrations.sqlite.test
2017-04-25 09:24:51 +02:00
2019-04-04 18:22:10 +02:00
.PHONY : test -sqlite \#%
2020-04-19 13:17:02 +02:00
test-sqlite\#% : integrations .sqlite .test generate -ini -sqlite
2022-09-02 21:18:23 +02:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/sqlite.ini ./integrations.sqlite.test -test.run $( subst .,/,$* )
2019-04-04 18:22:10 +02:00
2019-01-28 17:18:52 +01:00
.PHONY : test -sqlite -migration
2022-11-02 09:54:36 +01:00
test-sqlite-migration : migrations .sqlite .test migrations .individual .sqlite .test
2022-02-13 22:19:12 +01:00
2019-09-25 14:13:18 +02:00
generate-ini-mysql :
2017-09-13 08:03:20 +02:00
sed -e 's|{{TEST_MYSQL_HOST}}|${TEST_MYSQL_HOST}|g' \
2017-09-13 14:57:55 +02:00
-e 's|{{TEST_MYSQL_DBNAME}}|${TEST_MYSQL_DBNAME}|g' \
-e 's|{{TEST_MYSQL_USERNAME}}|${TEST_MYSQL_USERNAME}|g' \
-e 's|{{TEST_MYSQL_PASSWORD}}|${TEST_MYSQL_PASSWORD}|g' \
2020-04-19 13:17:02 +02:00
-e 's|{{REPO_TEST_DIR}}|${REPO_TEST_DIR}|g' \
2022-09-02 21:18:23 +02:00
-e 's|{{TEST_LOGGER}}|$(or $(TEST_LOGGER),test$(COMMA)file)|g' \
-e 's|{{TEST_TYPE}}|$(or $(TEST_TYPE),integration)|g' \
tests/mysql.ini.tmpl > tests/mysql.ini
2019-09-25 14:13:18 +02:00
.PHONY : test -mysql
test-mysql : integrations .mysql .test generate -ini -mysql
2022-09-02 21:18:23 +02:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mysql.ini ./integrations.mysql.test
2019-09-25 14:13:18 +02:00
.PHONY : test -mysql \#%
test-mysql\#% : integrations .mysql .test generate -ini -mysql
2022-09-02 21:18:23 +02:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mysql.ini ./integrations.mysql.test -test.run $( subst .,/,$* )
2019-09-25 14:13:18 +02:00
.PHONY : test -mysql -migration
2022-11-02 09:54:36 +01:00
test-mysql-migration : migrations .mysql .test migrations .individual .mysql .test
2019-09-25 14:13:18 +02:00
generate-ini-mysql8 :
2019-03-17 20:17:18 +01:00
sed -e 's|{{TEST_MYSQL8_HOST}}|${TEST_MYSQL8_HOST}|g' \
-e 's|{{TEST_MYSQL8_DBNAME}}|${TEST_MYSQL8_DBNAME}|g' \
-e 's|{{TEST_MYSQL8_USERNAME}}|${TEST_MYSQL8_USERNAME}|g' \
-e 's|{{TEST_MYSQL8_PASSWORD}}|${TEST_MYSQL8_PASSWORD}|g' \
2020-04-19 13:17:02 +02:00
-e 's|{{REPO_TEST_DIR}}|${REPO_TEST_DIR}|g' \
2022-09-02 21:18:23 +02:00
-e 's|{{TEST_LOGGER}}|$(or $(TEST_LOGGER),test$(COMMA)file)|g' \
-e 's|{{TEST_TYPE}}|$(or $(TEST_TYPE),integration)|g' \
tests/mysql8.ini.tmpl > tests/mysql8.ini
2019-09-25 14:13:18 +02:00
.PHONY : test -mysql 8
test-mysql8 : integrations .mysql 8.test generate -ini -mysql 8
2022-09-02 21:18:23 +02:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mysql8.ini ./integrations.mysql8.test
2019-09-25 14:13:18 +02:00
.PHONY : test -mysql 8\#%
test-mysql8\#% : integrations .mysql 8.test generate -ini -mysql 8
2022-09-02 21:18:23 +02:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mysql8.ini ./integrations.mysql8.test -test.run $( subst .,/,$* )
2019-09-25 14:13:18 +02:00
.PHONY : test -mysql 8-migration
2022-11-02 09:54:36 +01:00
test-mysql8-migration : migrations .mysql 8.test migrations .individual .mysql 8.test
2019-09-25 14:13:18 +02:00
generate-ini-pgsql :
2017-09-13 14:57:55 +02:00
sed -e 's|{{TEST_PGSQL_HOST}}|${TEST_PGSQL_HOST}|g' \
-e 's|{{TEST_PGSQL_DBNAME}}|${TEST_PGSQL_DBNAME}|g' \
-e 's|{{TEST_PGSQL_USERNAME}}|${TEST_PGSQL_USERNAME}|g' \
-e 's|{{TEST_PGSQL_PASSWORD}}|${TEST_PGSQL_PASSWORD}|g' \
2020-01-20 16:45:14 +01:00
-e 's|{{TEST_PGSQL_SCHEMA}}|${TEST_PGSQL_SCHEMA}|g' \
2020-04-19 13:17:02 +02:00
-e 's|{{REPO_TEST_DIR}}|${REPO_TEST_DIR}|g' \
2022-09-02 21:18:23 +02:00
-e 's|{{TEST_LOGGER}}|$(or $(TEST_LOGGER),test$(COMMA)file)|g' \
-e 's|{{TEST_TYPE}}|$(or $(TEST_TYPE),integration)|g' \
tests/pgsql.ini.tmpl > tests/pgsql.ini
2016-11-24 14:40:56 +01:00
2019-09-25 14:13:18 +02:00
.PHONY : test -pgsql
test-pgsql : integrations .pgsql .test generate -ini -pgsql
2022-09-02 21:18:23 +02:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/pgsql.ini ./integrations.pgsql.test
2019-01-28 17:18:52 +01:00
2019-09-25 14:13:18 +02:00
.PHONY : test -pgsql \#%
test-pgsql\#% : integrations .pgsql .test generate -ini -pgsql
2022-09-02 21:18:23 +02:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/pgsql.ini ./integrations.pgsql.test -test.run $( subst .,/,$* )
2019-03-17 20:17:18 +01:00
2019-09-25 14:13:18 +02:00
.PHONY : test -pgsql -migration
2022-11-02 09:54:36 +01:00
test-pgsql-migration : migrations .pgsql .test migrations .individual .pgsql .test
2019-03-17 20:17:18 +01:00
2019-09-25 14:13:18 +02:00
generate-ini-mssql :
sed -e 's|{{TEST_MSSQL_HOST}}|${TEST_MSSQL_HOST}|g' \
-e 's|{{TEST_MSSQL_DBNAME}}|${TEST_MSSQL_DBNAME}|g' \
-e 's|{{TEST_MSSQL_USERNAME}}|${TEST_MSSQL_USERNAME}|g' \
-e 's|{{TEST_MSSQL_PASSWORD}}|${TEST_MSSQL_PASSWORD}|g' \
2020-04-19 13:17:02 +02:00
-e 's|{{REPO_TEST_DIR}}|${REPO_TEST_DIR}|g' \
2022-09-02 21:18:23 +02:00
-e 's|{{TEST_LOGGER}}|$(or $(TEST_LOGGER),test$(COMMA)file)|g' \
-e 's|{{TEST_TYPE}}|$(or $(TEST_TYPE),integration)|g' \
tests/mssql.ini.tmpl > tests/mssql.ini
2019-01-28 17:18:52 +01:00
2018-12-12 02:01:41 +01:00
.PHONY : test -mssql
2019-09-25 14:13:18 +02:00
test-mssql : integrations .mssql .test generate -ini -mssql
2022-09-02 21:18:23 +02:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mssql.ini ./integrations.mssql.test
2019-09-25 14:13:18 +02:00
.PHONY : test -mssql \#%
test-mssql\#% : integrations .mssql .test generate -ini -mssql
2022-09-02 21:18:23 +02:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mssql.ini ./integrations.mssql.test -test.run $( subst .,/,$* )
2018-12-12 02:01:41 +01:00
2019-01-28 17:18:52 +01:00
.PHONY : test -mssql -migration
2022-11-02 09:54:36 +01:00
test-mssql-migration : migrations .mssql .test migrations .individual .mssql .test
2022-09-02 21:18:23 +02:00
.PHONY : playwright
playwright : $( PLAYWRIGHT_DIR )
npm install --no-save @playwright/test
npx playwright install $( PLAYWRIGHT_FLAGS)
.PHONY : test -e 2e %
test-e2e% : TEST_TYPE ?= e 2e
# Clear display env variable. Otherwise, chromium tests can fail.
DISPLAY =
.PHONY : test -e 2e
test-e2e : test -e 2e -sqlite
.PHONY : test -e 2e -sqlite
test-e2e-sqlite : playwright e 2e .sqlite .test generate -ini -sqlite
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/sqlite.ini ./e2e.sqlite.test
.PHONY : test -e 2e -sqlite \#%
test-e2e-sqlite\#% : playwright e 2e .sqlite .test generate -ini -sqlite
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/sqlite.ini ./e2e.sqlite.test -test.run TestE2e/$*
.PHONY : test -e 2e -mysql
test-e2e-mysql : playwright e 2e .mysql .test generate -ini -mysql
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mysql.ini ./e2e.mysql.test
.PHONY : test -e 2e -mysql \#%
test-e2e-mysql\#% : playwright e 2e .mysql .test generate -ini -mysql
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mysql.ini ./e2e.mysql.test -test.run TestE2e/$*
.PHONY : test -e 2e -mysql 8
test-e2e-mysql8 : playwright e 2e .mysql 8.test generate -ini -mysql 8
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mysql8.ini ./e2e.mysql8.test
.PHONY : test -e 2e -mysql 8\#%
test-e2e-mysql8\#% : playwright e 2e .mysql 8.test generate -ini -mysql 8
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mysql8.ini ./e2e.mysql8.test -test.run TestE2e/$*
.PHONY : test -e 2e -pgsql
test-e2e-pgsql : playwright e 2e .pgsql .test generate -ini -pgsql
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/pgsql.ini ./e2e.pgsql.test
.PHONY : test -e 2e -pgsql \#%
test-e2e-pgsql\#% : playwright e 2e .pgsql .test generate -ini -pgsql
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/pgsql.ini ./e2e.pgsql.test -test.run TestE2e/$*
.PHONY : test -e 2e -mssql
test-e2e-mssql : playwright e 2e .mssql .test generate -ini -mssql
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mssql.ini ./e2e.mssql.test
.PHONY : test -e 2e -mssql \#%
test-e2e-mssql\#% : playwright e 2e .mssql .test generate -ini -mssql
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mssql.ini ./e2e.mssql.test -test.run TestE2e/$*
2019-01-28 17:18:52 +01:00
2017-06-20 13:23:16 +02:00
.PHONY : bench -sqlite
2020-04-19 13:17:02 +02:00
bench-sqlite : integrations .sqlite .test generate -ini -sqlite
2022-09-02 21:18:23 +02:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/sqlite.ini ./integrations.sqlite.test -test.cpuprofile= cpu.out -test.run DontRunTests -test.bench .
2017-06-20 13:23:16 +02:00
.PHONY : bench -mysql
2019-09-25 14:13:18 +02:00
bench-mysql : integrations .mysql .test generate -ini -mysql
2022-09-02 21:18:23 +02:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mysql.ini ./integrations.mysql.test -test.cpuprofile= cpu.out -test.run DontRunTests -test.bench .
2017-06-20 13:23:16 +02:00
2019-02-11 18:09:50 +01:00
.PHONY : bench -mssql
2019-09-25 14:13:18 +02:00
bench-mssql : integrations .mssql .test generate -ini -mssql
2022-09-02 21:18:23 +02:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mssql.ini ./integrations.mssql.test -test.cpuprofile= cpu.out -test.run DontRunTests -test.bench .
2019-02-11 18:09:50 +01:00
2017-06-20 13:23:16 +02:00
.PHONY : bench -pgsql
2019-09-25 14:13:18 +02:00
bench-pgsql : integrations .pgsql .test generate -ini -pgsql
2022-09-02 21:18:23 +02:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/pgsql.ini ./integrations.pgsql.test -test.cpuprofile= cpu.out -test.run DontRunTests -test.bench .
2017-06-20 13:23:16 +02:00
2017-06-15 11:38:33 +02:00
.PHONY : integration -test -coverage
2019-09-25 14:13:18 +02:00
integration-test-coverage : integrations .cover .test generate -ini -mysql
2022-09-02 21:18:23 +02:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mysql.ini ./integrations.cover.test -test.coverprofile= integration.coverage.out
2017-06-15 11:38:33 +02:00
2022-02-19 03:28:43 +01:00
.PHONY : integration -test -coverage -sqlite
integration-test-coverage-sqlite : integrations .cover .sqlite .test generate -ini -sqlite
2022-09-02 21:18:23 +02:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/sqlite.ini ./integrations.cover.sqlite.test -test.coverprofile= integration.coverage.out
2022-02-19 03:28:43 +01:00
2020-01-14 01:06:54 +01:00
integrations.mysql.test : git -check $( GO_SOURCES )
2022-09-02 21:18:23 +02:00
$( GO) test $( GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration -o integrations.mysql.test
2019-09-25 14:13:18 +02:00
2020-01-14 01:06:54 +01:00
integrations.mysql8.test : git -check $( GO_SOURCES )
2022-09-02 21:18:23 +02:00
$( GO) test $( GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration -o integrations.mysql8.test
2019-09-25 14:13:18 +02:00
2020-01-14 01:06:54 +01:00
integrations.pgsql.test : git -check $( GO_SOURCES )
2022-09-02 21:18:23 +02:00
$( GO) test $( GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration -o integrations.pgsql.test
2019-09-25 14:13:18 +02:00
2020-01-14 01:06:54 +01:00
integrations.mssql.test : git -check $( GO_SOURCES )
2022-09-02 21:18:23 +02:00
$( GO) test $( GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration -o integrations.mssql.test
2017-04-25 09:24:51 +02:00
2020-01-14 01:06:54 +01:00
integrations.sqlite.test : git -check $( GO_SOURCES )
2022-09-02 21:18:23 +02:00
$( GO) test $( GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration -o integrations.sqlite.test -tags '$(TEST_TAGS)'
2017-06-15 11:38:33 +02:00
2020-01-16 20:21:35 +01:00
integrations.cover.test : git -check $( GO_SOURCES )
2022-11-02 09:54:36 +01:00
$( GO) test $( GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration -coverpkg $( shell echo $( GO_TEST_PACKAGES) | tr ' ' ',' ) -o integrations.cover.test
2017-06-15 11:38:33 +02:00
2022-02-19 03:28:43 +01:00
integrations.cover.sqlite.test : git -check $( GO_SOURCES )
2022-11-02 09:54:36 +01:00
$( GO) test $( GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration -coverpkg $( shell echo $( GO_TEST_PACKAGES) | tr ' ' ',' ) -o integrations.cover.sqlite.test -tags '$(TEST_TAGS)'
2022-02-19 03:28:43 +01:00
2019-09-25 14:13:18 +02:00
.PHONY : migrations .mysql .test
2022-11-02 09:54:36 +01:00
migrations.mysql.test : $( GO_SOURCES ) generate -ini -mysql
2022-09-02 21:18:23 +02:00
$( GO) test $( GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration/migration-test -o migrations.mysql.test
2022-11-02 09:54:36 +01:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mysql.ini ./migrations.mysql.test
2019-09-25 14:13:18 +02:00
.PHONY : migrations .mysql 8.test
2022-11-02 09:54:36 +01:00
migrations.mysql8.test : $( GO_SOURCES ) generate -ini -mysql 8
2022-09-02 21:18:23 +02:00
$( GO) test $( GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration/migration-test -o migrations.mysql8.test
2022-11-02 09:54:36 +01:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mysql8.ini ./migrations.mysql8.test
2019-09-25 14:13:18 +02:00
.PHONY : migrations .pgsql .test
2022-11-02 09:54:36 +01:00
migrations.pgsql.test : $( GO_SOURCES ) generate -ini -pgsql
2022-09-02 21:18:23 +02:00
$( GO) test $( GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration/migration-test -o migrations.pgsql.test
2022-11-02 09:54:36 +01:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/pgsql.ini ./migrations.pgsql.test
2019-09-25 14:13:18 +02:00
.PHONY : migrations .mssql .test
2022-11-02 09:54:36 +01:00
migrations.mssql.test : $( GO_SOURCES ) generate -ini -mssql
2022-09-02 21:18:23 +02:00
$( GO) test $( GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration/migration-test -o migrations.mssql.test
2022-11-02 09:54:36 +01:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mssql.ini ./migrations.mssql.test
2019-01-28 17:18:52 +01:00
.PHONY : migrations .sqlite .test
2022-11-02 09:54:36 +01:00
migrations.sqlite.test : $( GO_SOURCES ) generate -ini -sqlite
2022-09-02 21:18:23 +02:00
$( GO) test $( GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration/migration-test -o migrations.sqlite.test -tags '$(TEST_TAGS)'
2022-11-02 09:54:36 +01:00
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/sqlite.ini ./migrations.sqlite.test
2019-01-28 17:18:52 +01:00
2021-03-24 19:27:22 +01:00
.PHONY : migrations .individual .mysql .test
migrations.individual.mysql.test : $( GO_SOURCES )
2022-11-02 09:54:36 +01:00
for pkg in $( shell $( GO) list code.gitea.io/gitea/models/migrations/...) ; do \
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mysql.ini $( GO) test $( GOTESTFLAGS) -tags '$(TEST_TAGS)' $$ pkg; \
done
2021-03-24 19:27:22 +01:00
.PHONY : migrations .individual .mysql 8.test
migrations.individual.mysql8.test : $( GO_SOURCES )
2022-11-02 09:54:36 +01:00
for pkg in $( shell $( GO) list code.gitea.io/gitea/models/migrations/...) ; do \
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mysql8.ini $( GO) test $( GOTESTFLAGS) -tags '$(TEST_TAGS)' $$ pkg; \
done
.PHONY : migrations .individual .mysql 8.test \#%
migrations.individual.sqlite.test\#% : $( GO_SOURCES ) generate -ini -sqlite
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/sqlite.ini $( GO) test $( GOTESTFLAGS) -tags '$(TEST_TAGS)' code.gitea.io/gitea/models/migrations/$*
2021-03-24 19:27:22 +01:00
.PHONY : migrations .individual .pgsql .test
migrations.individual.pgsql.test : $( GO_SOURCES )
2022-11-02 09:54:36 +01:00
for pkg in $( shell $( GO) list code.gitea.io/gitea/models/migrations/...) ; do \
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/pgsql.ini $( GO) test $( GOTESTFLAGS) -tags '$(TEST_TAGS)' $$ pkg; \
done
.PHONY : migrations .individual .pgsql .test \#%
migrations.individual.pgsql.test\#% : $( GO_SOURCES ) generate -ini -pgsql
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/pgsql.ini $( GO) test $( GOTESTFLAGS) -tags '$(TEST_TAGS)' code.gitea.io/gitea/models/migrations/$*
2021-03-24 19:27:22 +01:00
.PHONY : migrations .individual .mssql .test
2022-11-02 09:54:36 +01:00
migrations.individual.mssql.test : $( GO_SOURCES ) generate -ini -mssql
for pkg in $( shell $( GO) list code.gitea.io/gitea/models/migrations/...) ; do \
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mssql.ini $( GO) test $( GOTESTFLAGS) -tags '$(TEST_TAGS)' $$ pkg -test.failfast; \
done
.PHONY : migrations .individual .mssql .test \#%
migrations.individual.mssql.test\#% : $( GO_SOURCES ) generate -ini -mssql
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/mssql.ini $( GO) test $( GOTESTFLAGS) -tags '$(TEST_TAGS)' code.gitea.io/gitea/models/migrations/$*
2021-03-24 19:27:22 +01:00
.PHONY : migrations .individual .sqlite .test
2022-11-02 09:54:36 +01:00
migrations.individual.sqlite.test : $( GO_SOURCES ) generate -ini -sqlite
for pkg in $( shell $( GO) list code.gitea.io/gitea/models/migrations/...) ; do \
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/sqlite.ini $( GO) test $( GOTESTFLAGS) -tags '$(TEST_TAGS)' $$ pkg; \
done
.PHONY : migrations .individual .sqlite .test \#%
migrations.individual.sqlite.test\#% : $( GO_SOURCES ) generate -ini -sqlite
GITEA_ROOT = " $( CURDIR) " GITEA_CONF = tests/sqlite.ini $( GO) test $( GOTESTFLAGS) -tags '$(TEST_TAGS)' code.gitea.io/gitea/models/migrations/$*
2021-03-24 19:27:22 +01:00
2022-09-02 21:18:23 +02:00
e2e.mysql.test : $( GO_SOURCES )
$( GO) test $( GOTESTFLAGS) -c code.gitea.io/gitea/tests/e2e -o e2e.mysql.test
e2e.mysql8.test : $( GO_SOURCES )
$( GO) test $( GOTESTFLAGS) -c code.gitea.io/gitea/tests/e2e -o e2e.mysql8.test
e2e.pgsql.test : $( GO_SOURCES )
$( GO) test $( GOTESTFLAGS) -c code.gitea.io/gitea/tests/e2e -o e2e.pgsql.test
e2e.mssql.test : $( GO_SOURCES )
$( GO) test $( GOTESTFLAGS) -c code.gitea.io/gitea/tests/e2e -o e2e.mssql.test
e2e.sqlite.test : $( GO_SOURCES )
$( GO) test $( GOTESTFLAGS) -c code.gitea.io/gitea/tests/e2e -o e2e.sqlite.test -tags '$(TEST_TAGS)'
2016-11-07 15:31:44 +01:00
.PHONY : check
2016-11-07 13:41:47 +01:00
check : test
2020-02-11 20:42:03 +01:00
.PHONY : install $( TAGS_PREREQ )
2016-11-24 14:38:37 +01:00
install : $( wildcard *.go )
2020-06-06 01:57:25 +02:00
CGO_CFLAGS = " $( CGO_CFLAGS) " $( GO) install -v -tags '$(TAGS)' -ldflags '-s -w $(LDFLAGS)'
2016-08-05 21:46:26 +02:00
2016-11-04 13:58:55 +01:00
.PHONY : build
2020-02-22 10:15:11 +01:00
build : frontend backend
.PHONY : frontend
2022-10-10 20:45:02 +02:00
frontend : $( WEBPACK_DEST )
2020-02-22 10:15:11 +01:00
.PHONY : backend
2022-09-05 08:04:18 +02:00
backend : go -check generate -backend $( EXECUTABLE )
2020-02-22 10:15:11 +01:00
2022-09-05 08:04:18 +02:00
# We generate the backend before the frontend in case we in future we want to generate things in the frontend from generated files in backend
2020-02-22 10:15:11 +01:00
.PHONY : generate
2022-10-10 20:45:02 +02:00
generate : generate -backend
2022-09-09 17:33:01 +02:00
2022-09-05 08:04:18 +02:00
.PHONY : generate -backend
generate-backend : $( TAGS_PREREQ ) generate -go
2022-09-09 17:33:01 +02:00
.PHONY : generate -go
2022-09-05 08:04:18 +02:00
generate-go : $( TAGS_PREREQ )
2020-12-03 02:54:30 +01:00
@echo "Running go generate..."
2022-01-15 00:16:05 +01:00
@CC= GOOS = GOARCH = $( GO) generate -tags '$(TAGS)' $( GO_PACKAGES)
2016-07-25 20:48:17 +02:00
2022-09-11 09:02:18 +02:00
.PHONY : security -check
security-check :
govulncheck -v ./...
2020-02-11 20:42:03 +01:00
$(EXECUTABLE) : $( GO_SOURCES ) $( TAGS_PREREQ )
2022-01-15 00:16:05 +01:00
CGO_CFLAGS = " $( CGO_CFLAGS) " $( GO) build $( GOFLAGS) $( EXTRA_GOFLAGS) -tags '$(TAGS)' -ldflags '-s -w $(LDFLAGS)' -o $@
2016-02-15 05:14:55 +01:00
2016-11-04 13:58:55 +01:00
.PHONY : release
2022-01-15 00:16:05 +01:00
release : frontend generate release -windows release -linux release -darwin release -copy release -compress vendor release -sources release -docs release -check
2016-12-04 23:48:36 +01:00
2020-02-19 04:10:25 +01:00
$(DIST_DIRS) :
mkdir -p $( DIST_DIRS)
2015-11-03 18:16:43 +01:00
2017-03-07 14:49:24 +01:00
.PHONY : release -windows
2020-02-19 04:10:25 +01:00
release-windows : | $( DIST_DIRS )
2022-03-16 03:50:26 +01:00
CGO_CFLAGS = " $( CGO_CFLAGS) " $( GO) run $( XGO_PACKAGE) -go $( XGO_VERSION) -buildmode exe -dest $( DIST) /binaries -tags 'netgo osusergo $(TAGS)' -ldflags '-linkmode external -extldflags "-static" $(LDFLAGS)' -targets 'windows/*' -out gitea-$( VERSION) .
2021-04-15 11:02:44 +02:00
i f e q ( , $( findstring gogit ,$ ( TAGS ) ) )
2022-03-16 03:50:26 +01:00
CGO_CFLAGS = " $( CGO_CFLAGS) " $( GO) run $( XGO_PACKAGE) -go $( XGO_VERSION) -buildmode exe -dest $( DIST) /binaries -tags 'netgo osusergo gogit $(TAGS)' -ldflags '-linkmode external -extldflags "-static" $(LDFLAGS)' -targets 'windows/*' -out gitea-$( VERSION) -gogit .
2021-04-15 11:02:44 +02:00
e n d i f
2022-06-05 04:42:24 +02:00
i f e q ( $( CI ) , t r u e )
2019-04-14 17:06:43 +02:00
cp /build/* $( DIST) /binaries
2017-03-07 14:49:24 +01:00
e n d i f
.PHONY : release -linux
2020-02-19 04:10:25 +01:00
release-linux : | $( DIST_DIRS )
2022-03-16 03:50:26 +01:00
CGO_CFLAGS = " $( CGO_CFLAGS) " $( GO) run $( XGO_PACKAGE) -go $( XGO_VERSION) -dest $( DIST) /binaries -tags 'netgo osusergo $(TAGS)' -ldflags '-linkmode external -extldflags "-static" $(LDFLAGS)' -targets '$(LINUX_ARCHS)' -out gitea-$( VERSION) .
2022-06-05 04:42:24 +02:00
i f e q ( $( CI ) , t r u e )
2019-04-14 17:06:43 +02:00
cp /build/* $( DIST) /binaries
2017-03-07 14:49:24 +01:00
e n d i f
.PHONY : release -darwin
2020-02-19 04:10:25 +01:00
release-darwin : | $( DIST_DIRS )
2022-03-16 03:50:26 +01:00
CGO_CFLAGS = " $( CGO_CFLAGS) " $( GO) run $( XGO_PACKAGE) -go $( XGO_VERSION) -dest $( DIST) /binaries -tags 'netgo osusergo $(TAGS)' -ldflags '$(LDFLAGS)' -targets 'darwin-10.12/amd64,darwin-10.12/arm64' -out gitea-$( VERSION) .
2022-06-05 04:42:24 +02:00
i f e q ( $( CI ) , t r u e )
2019-04-14 17:06:43 +02:00
cp /build/* $( DIST) /binaries
2016-12-04 23:48:36 +01:00
e n d i f
2015-11-03 18:16:43 +01:00
2016-11-04 13:58:55 +01:00
.PHONY : release -copy
2020-02-19 04:10:25 +01:00
release-copy : | $( DIST_DIRS )
2022-06-05 04:42:24 +02:00
cd $( DIST) ; for file in ` find . -type f -name "*" ` ; do cp $$ { file} ./release/; done ;
2015-12-01 22:18:30 +01:00
2016-11-04 13:58:55 +01:00
.PHONY : release -check
2020-02-19 04:10:25 +01:00
release-check : | $( DIST_DIRS )
2019-04-14 22:33:24 +02:00
cd $( DIST) /release/; for file in ` find . -type f -name "*" ` ; do echo " checksumming $$ {file} " && $( SHASUM) ` echo $$ { file} | sed 's/^..//' ` > $$ { file} .sha256; done ;
2015-12-01 22:18:30 +01:00
2018-05-21 20:50:39 +02:00
.PHONY : release -compress
2020-02-19 04:10:25 +01:00
release-compress : | $( DIST_DIRS )
2022-03-16 03:50:26 +01:00
cd $( DIST) /release/; for file in ` find . -type f -name "*" ` ; do echo " compressing $$ {file} " && $( GO) run $( GXZ_PAGAGE) -k -9 $$ { file} ; done ;
2018-05-21 20:50:39 +02:00
2020-02-16 18:53:02 +01:00
.PHONY : release -sources
2021-04-09 07:08:14 +02:00
release-sources : | $( DIST_DIRS )
2020-02-22 10:15:11 +01:00
echo $( VERSION) > $( STORED_VERSION_FILE)
2021-04-09 07:08:14 +02:00
# bsdtar needs a ^ to prevent matching subdirectories
$( eval EXCL := --exclude= $( shell tar --help | grep -q bsdtar && echo "^" ) ./)
2022-04-25 18:41:07 +02:00
# use transform to a add a release-folder prefix; in bsdtar the transform parameter equivalent is -s
$( eval TRANSFORM := $( shell tar --help | grep -q bsdtar && echo " -s '/^./gitea-src- $( VERSION) /' " || echo " --transform 's|^./|gitea-src- $( VERSION) /|' " ) )
tar $( addprefix $( EXCL) ,$( TAR_EXCLUDES) ) $( TRANSFORM) -czf $( DIST) /release/gitea-src-$( VERSION) .tar.gz .
2020-02-22 10:15:11 +01:00
rm -f $( STORED_VERSION_FILE)
2020-02-16 18:53:02 +01:00
2020-07-14 04:09:39 +02:00
.PHONY : release -docs
release-docs : | $( DIST_DIRS ) docs
2021-04-09 07:08:14 +02:00
tar -czf $( DIST) /release/gitea-docs-$( VERSION) .tar.gz -C ./docs/public .
2020-07-14 04:09:39 +02:00
.PHONY : docs
docs :
@hash hugo > /dev/null 2>& 1; if [ $$ ? -ne 0 ] ; then \
2020-09-05 08:24:36 +02:00
curl -sL https://github.com/gohugoio/hugo/releases/download/v0.74.3/hugo_0.74.3_Linux-64bit.tar.gz | tar zxf - -C /tmp && mv /tmp/hugo /usr/bin/hugo && chmod +x /usr/bin/hugo; \
2020-07-14 04:09:39 +02:00
fi
cd docs; make trans-copy clean build-offline;
2022-02-12 08:08:53 +01:00
.PHONY : deps
deps : deps -frontend deps -backend
.PHONY : deps -frontend
deps-frontend : node_modules
.PHONY : deps -backend
deps-backend :
$( GO) mod download
2022-03-16 03:50:26 +01:00
$( GO) install $( AIR_PACKAGE)
$( GO) install $( EDITORCONFIG_CHECKER_PACKAGE)
$( GO) install $( ERRCHECK_PACKAGE)
$( GO) install $( GOFUMPT_PACKAGE)
$( GO) install $( GOLANGCI_LINT_PACKAGE)
$( GO) install $( GXZ_PAGAGE)
$( GO) install $( MISSPELL_PACKAGE)
$( GO) install $( SWAGGER_PACKAGE)
$( GO) install $( XGO_PACKAGE)
2022-09-04 00:20:46 +02:00
$( GO) install $( GO_LICENSES_PACKAGE)
2022-09-11 09:02:18 +02:00
$( GO) install $( GOVULNCHECK_PACKAGE)
2022-02-12 08:08:53 +01:00
2019-12-05 04:41:38 +01:00
node_modules : package -lock .json
2020-11-30 00:16:04 +01:00
npm install --no-save
2020-01-28 08:30:39 +01:00
@touch node_modules
2019-06-19 04:59:47 +02:00
.PHONY : npm -update
2020-01-25 12:44:36 +01:00
npm-update : node -check | node_modules
2019-06-19 04:59:47 +02:00
npx updates -cu
rm -rf node_modules package-lock.json
npm install --package-lock
2020-07-27 23:01:25 +02:00
@touch node_modules
2019-06-19 04:59:47 +02:00
2020-01-21 06:17:58 +01:00
.PHONY : fomantic
2021-04-09 07:08:14 +02:00
fomantic :
2021-04-02 02:11:04 +02:00
rm -rf $( FOMANTIC_WORK_DIR) /build
2021-04-09 07:08:14 +02:00
cd $( FOMANTIC_WORK_DIR) && npm install --no-save
cp -f $( FOMANTIC_WORK_DIR) /theme.config.less $( FOMANTIC_WORK_DIR) /node_modules/fomantic-ui/src/theme.config
cp -rf $( FOMANTIC_WORK_DIR) /_site $( FOMANTIC_WORK_DIR) /node_modules/fomantic-ui/src/
cd $( FOMANTIC_WORK_DIR) && npx gulp -f node_modules/fomantic-ui/gulpfile.js build
2022-06-10 14:24:02 +02:00
$( SED_INPLACE) -e 's/\r//g' $( FOMANTIC_WORK_DIR) /build/semantic.css $( FOMANTIC_WORK_DIR) /build/semantic.js
2021-08-29 21:57:07 +02:00
rm -f $( FOMANTIC_WORK_DIR) /build/*.min.*
2020-01-21 06:17:58 +01:00
2020-01-28 08:30:39 +01:00
.PHONY : webpack
2020-02-22 10:15:11 +01:00
webpack : $( WEBPACK_DEST )
2019-12-05 04:41:38 +01:00
2021-04-09 07:08:14 +02:00
$(WEBPACK_DEST) : $( WEBPACK_SOURCES ) $( WEBPACK_CONFIGS ) package -lock .json
@$( MAKE) -s node-check node_modules
2020-05-24 09:36:40 +02:00
rm -rf $( WEBPACK_DEST_ENTRIES)
2020-12-27 15:24:27 +01:00
npx webpack
2020-01-28 08:30:39 +01:00
@touch $( WEBPACK_DEST)
2019-05-16 07:57:47 +02:00
2020-07-12 11:10:56 +02:00
.PHONY : svg
svg : node -check | node_modules
rm -rf $( SVG_DEST_DIR)
node build/generate-svg.js
.PHONY : svg -check
svg-check : svg
2020-07-24 18:41:30 +02:00
@git add $( SVG_DEST_DIR)
@diff= $$ ( git diff --cached $( SVG_DEST_DIR) ) ; \
2020-07-12 11:10:56 +02:00
if [ -n " $$ diff " ] ; then \
2020-07-24 18:41:30 +02:00
echo " Please run 'make svg' and 'git add $( SVG_DEST_DIR) ' and commit the result: " ; \
2020-07-12 11:10:56 +02:00
echo " $$ {diff} " ; \
exit 1; \
2020-11-29 22:39:36 +01:00
fi
2020-07-12 11:10:56 +02:00
2022-01-15 21:06:29 +01:00
.PHONY : lockfile -check
lockfile-check :
npm install --package-lock-only
@diff= $$ ( git diff package-lock.json) ; \
if [ -n " $$ diff " ] ; then \
echo "package-lock.json is inconsistent with package.json" ; \
echo "Please run 'npm install --package-lock-only' and commit the result:" ; \
echo " $$ {diff} " ; \
exit 1; \
fi
2017-07-03 15:37:00 +02:00
.PHONY : update -translations
update-translations :
mkdir -p ./translations
cd ./translations && curl -L https://crowdin.com/download/project/gitea.zip > gitea.zip && unzip gitea.zip
rm ./translations/gitea.zip
$( SED_INPLACE) -e 's/="/=/g' -e 's/"$$//g' ./translations/*.ini
$( SED_INPLACE) -e 's/\\"/"/g' ./translations/*.ini
mv ./translations/*.ini ./options/locale/
2017-07-12 04:28:57 +02:00
rmdir ./translations
2017-07-28 07:51:20 +02:00
2020-09-02 18:57:08 +02:00
.PHONY : generate -license
generate-license :
2022-07-04 05:33:55 +02:00
$( GO) run build/generate-licenses.go
2020-09-02 18:57:08 +02:00
.PHONY : generate -gitignore
generate-gitignore :
2022-07-04 05:33:55 +02:00
$( GO) run build/generate-gitignores.go
2020-09-02 18:57:08 +02:00
2017-07-28 07:51:20 +02:00
.PHONY : generate -images
2021-04-15 13:02:34 +02:00
generate-images : | node_modules
2022-06-06 05:27:25 +02:00
npm install --no-save --no-package-lock fabric@5 imagemin-zopfli@7
2020-12-19 02:17:27 +01:00
node build/generate-images.js $( TAGS)
2019-03-25 22:23:17 +01:00
2021-02-24 23:36:48 +01:00
.PHONY : generate -manpage
generate-manpage :
@[ -f gitea ] || make backend
@mkdir -p man/man1/ man/man5
@./gitea docs --man > man/man1/gitea.1
@gzip -9 man/man1/gitea.1 && echo man/man1/gitea.1.gz created
Fix various typos (#20338)
* Fix various typos
Found via `codespell -q 3 -S ./options/locale,./options/license,./public/vendor -L actived,allways,attachements,ba,befores,commiter,pullrequest,pullrequests,readby,splitted,te,unknwon`
Co-authored-by: zeripath <art27@cantab.net>
2022-07-12 23:32:37 +02:00
@#TODO A small script that formats config-cheat-sheet.en-us.md nicely for use as a config man page
2021-02-24 23:36:48 +01:00
2020-02-06 22:40:27 +01:00
.PHONY : pr \#%
2020-02-08 01:14:43 +01:00
pr\#% : clean -all
2020-02-06 22:40:27 +01:00
$( GO) run contrib/pr/checkout.go $*
2019-06-12 21:41:28 +02:00
.PHONY : golangci -lint
2022-03-16 03:50:26 +01:00
golangci-lint :
$( GO) run $( GOLANGCI_LINT_PACKAGE) run
# workaround step for the lint-backend-windows CI task because 'go run' can not
# have distinct GOOS/GOARCH for its build and run steps
.PHONY : golangci -lint -windows
golangci-lint-windows :
@GOOS= GOARCH = $( GO) install $( GOLANGCI_LINT_PACKAGE)
golangci-lint run
2020-04-19 13:17:02 +02:00
2022-02-18 05:33:58 +01:00
.PHONY : editorconfig -checker
editorconfig-checker :
2022-03-16 03:50:26 +01:00
$( GO) run $( EDITORCONFIG_CHECKER_PACKAGE) templates
2022-02-18 05:33:58 +01:00
2020-07-21 22:41:03 +02:00
.PHONY : docker
docker :
docker build --disable-content-trust= false -t $( DOCKER_REF) .
# support also build args docker build --build-arg GITEA_VERSION=v1.2.3 --build-arg TAGS="bindata sqlite sqlite_unlock_notify" .
.PHONY : docker -build
docker-build :
2020-12-19 03:54:01 +01:00
docker run -ti --rm -v " $( CURDIR) :/srv/app/src/code.gitea.io/gitea " -w /srv/app/src/code.gitea.io/gitea -e TAGS = " bindata $( TAGS) " LDFLAGS = " $( LDFLAGS) " CGO_EXTRA_CFLAGS = " $( CGO_EXTRA_CFLAGS) " webhippie/golang:edge make clean build
2020-07-21 22:41:03 +02:00
2020-04-19 13:17:02 +02:00
# This endif closes the if at the top of the file
2020-04-30 08:26:37 +02:00
e n d i f