You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 40KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025
  1. ifeq ($(USE_REPO_TEST_DIR),1)
  2. # This rule replaces the whole Makefile when we're trying to use /tmp repository temporary files
  3. location = $(CURDIR)/$(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))
  4. self := $(location)
  5. %:
  6. @tmpdir=`mktemp --tmpdir -d` ; \
  7. echo Using temporary directory $$tmpdir for test repositories ; \
  8. USE_REPO_TEST_DIR= $(MAKE) -f $(self) --no-print-directory REPO_TEST_DIR=$$tmpdir/ $@ ; \
  9. STATUS=$$? ; rm -r "$$tmpdir" ; exit $$STATUS
  10. else
  11. # This is the "normal" part of the Makefile
  12. DIST := dist
  13. DIST_DIRS := $(DIST)/binaries $(DIST)/release
  14. IMPORT := code.gitea.io/gitea
  15. GO ?= go
  16. SHASUM ?= shasum -a 256
  17. HAS_GO := $(shell hash $(GO) > /dev/null 2>&1 && echo yes)
  18. COMMA := ,
  19. XGO_VERSION := go-1.20.x
  20. AIR_PACKAGE ?= github.com/cosmtrek/air@v1.43.0
  21. EDITORCONFIG_CHECKER_PACKAGE ?= github.com/editorconfig-checker/editorconfig-checker/cmd/editorconfig-checker@2.7.0
  22. GOFUMPT_PACKAGE ?= mvdan.cc/gofumpt@v0.5.0
  23. GOLANGCI_LINT_PACKAGE ?= github.com/golangci/golangci-lint/cmd/golangci-lint@v1.52.2
  24. GXZ_PAGAGE ?= github.com/ulikunitz/xz/cmd/gxz@v0.5.11
  25. MISSPELL_PACKAGE ?= github.com/client9/misspell/cmd/misspell@v0.3.4
  26. SWAGGER_PACKAGE ?= github.com/go-swagger/go-swagger/cmd/swagger@v0.30.4
  27. XGO_PACKAGE ?= src.techknowlogick.com/xgo@latest
  28. GO_LICENSES_PACKAGE ?= github.com/google/go-licenses@v1.6.0
  29. GOVULNCHECK_PACKAGE ?= golang.org/x/vuln/cmd/govulncheck@latest
  30. ACTIONLINT_PACKAGE ?= github.com/rhysd/actionlint/cmd/actionlint@latest
  31. DOCKER_IMAGE ?= gitea/gitea
  32. DOCKER_TAG ?= latest
  33. DOCKER_REF := $(DOCKER_IMAGE):$(DOCKER_TAG)
  34. ifeq ($(HAS_GO), yes)
  35. GOPATH ?= $(shell $(GO) env GOPATH)
  36. export PATH := $(GOPATH)/bin:$(PATH)
  37. CGO_EXTRA_CFLAGS := -DSQLITE_MAX_VARIABLE_NUMBER=32766
  38. CGO_CFLAGS ?= $(shell $(GO) env CGO_CFLAGS) $(CGO_EXTRA_CFLAGS)
  39. endif
  40. ifeq ($(OS), Windows_NT)
  41. GOFLAGS := -v -buildmode=exe
  42. EXECUTABLE ?= gitea.exe
  43. else ifeq ($(OS), Windows)
  44. GOFLAGS := -v -buildmode=exe
  45. EXECUTABLE ?= gitea.exe
  46. else
  47. GOFLAGS := -v
  48. EXECUTABLE ?= gitea
  49. endif
  50. ifeq ($(shell sed --version 2>/dev/null | grep -q GNU && echo gnu),gnu)
  51. SED_INPLACE := sed -i
  52. else
  53. SED_INPLACE := sed -i ''
  54. endif
  55. EXTRA_GOFLAGS ?=
  56. MAKE_VERSION := $(shell "$(MAKE)" -v | cat | head -n 1)
  57. MAKE_EVIDENCE_DIR := .make_evidence
  58. ifeq ($(RACE_ENABLED),true)
  59. GOFLAGS += -race
  60. GOTESTFLAGS += -race
  61. endif
  62. STORED_VERSION_FILE := VERSION
  63. HUGO_VERSION ?= 0.111.3
  64. GITHUB_REF_TYPE ?= branch
  65. GITHUB_REF_NAME ?= $(shell git rev-parse --abbrev-ref HEAD)
  66. ifneq ($(GITHUB_REF_TYPE),branch)
  67. VERSION ?= $(subst v,,$(GITHUB_REF_NAME))
  68. GITEA_VERSION ?= $(VERSION)
  69. else
  70. ifneq ($(GITHUB_REF_NAME),)
  71. VERSION ?= $(subst release/v,,$(GITHUB_REF_NAME))
  72. else
  73. VERSION ?= main
  74. endif
  75. STORED_VERSION=$(shell cat $(STORED_VERSION_FILE) 2>/dev/null)
  76. ifneq ($(STORED_VERSION),)
  77. GITEA_VERSION ?= $(STORED_VERSION)
  78. else
  79. GITEA_VERSION ?= $(shell git describe --tags --always | sed 's/-/+/' | sed 's/^v//')
  80. endif
  81. endif
  82. # if version = "main" then update version to "nightly"
  83. ifeq ($(VERSION),main)
  84. VERSION := main-nightly
  85. endif
  86. LDFLAGS := $(LDFLAGS) -X "main.MakeVersion=$(MAKE_VERSION)" -X "main.Version=$(GITEA_VERSION)" -X "main.Tags=$(TAGS)"
  87. LINUX_ARCHS ?= linux/amd64,linux/386,linux/arm-5,linux/arm-6,linux/arm64
  88. 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/))
  89. 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/))
  90. FOMANTIC_WORK_DIR := web_src/fomantic
  91. WEBPACK_SOURCES := $(shell find web_src/js web_src/css -type f)
  92. WEBPACK_CONFIGS := webpack.config.js
  93. WEBPACK_DEST := public/js/index.js public/css/index.css
  94. WEBPACK_DEST_ENTRIES := public/js public/css public/fonts public/img/webpack
  95. BINDATA_DEST := modules/public/bindata.go modules/options/bindata.go modules/templates/bindata.go
  96. BINDATA_HASH := $(addsuffix .hash,$(BINDATA_DEST))
  97. GENERATED_GO_DEST := modules/charset/invisible_gen.go modules/charset/ambiguous_gen.go
  98. SVG_DEST_DIR := public/img/svg
  99. AIR_TMP_DIR := .air
  100. GO_LICENSE_TMP_DIR := .go-licenses
  101. GO_LICENSE_FILE := assets/go-licenses.json
  102. TAGS ?=
  103. TAGS_SPLIT := $(subst $(COMMA), ,$(TAGS))
  104. TAGS_EVIDENCE := $(MAKE_EVIDENCE_DIR)/tags
  105. TEST_TAGS ?= sqlite sqlite_unlock_notify
  106. 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)
  107. GO_DIRS := build cmd models modules routers services tests
  108. WEB_DIRS := web_src/js web_src/css
  109. GO_SOURCES := $(wildcard *.go)
  110. GO_SOURCES += $(shell find $(GO_DIRS) -type f -name "*.go" ! -path modules/options/bindata.go ! -path modules/public/bindata.go ! -path modules/templates/bindata.go)
  111. GO_SOURCES += $(GENERATED_GO_DEST)
  112. GO_SOURCES_NO_BINDATA := $(GO_SOURCES)
  113. ifeq ($(filter $(TAGS_SPLIT),bindata),bindata)
  114. GO_SOURCES += $(BINDATA_DEST)
  115. GENERATED_GO_DEST += $(BINDATA_DEST)
  116. endif
  117. # Force installation of playwright dependencies by setting this flag
  118. ifdef DEPS_PLAYWRIGHT
  119. PLAYWRIGHT_FLAGS += --with-deps
  120. endif
  121. SWAGGER_SPEC := templates/swagger/v1_json.tmpl
  122. SWAGGER_SPEC_S_TMPL := s|"basePath": *"/api/v1"|"basePath": "{{AppSubUrl \| JSEscape \| Safe}}/api/v1"|g
  123. SWAGGER_SPEC_S_JSON := s|"basePath": *"{{AppSubUrl \| JSEscape \| Safe}}/api/v1"|"basePath": "/api/v1"|g
  124. SWAGGER_EXCLUDE := code.gitea.io/sdk
  125. SWAGGER_NEWLINE_COMMAND := -e '$$a\'
  126. TEST_MYSQL_HOST ?= mysql:3306
  127. TEST_MYSQL_DBNAME ?= testgitea
  128. TEST_MYSQL_USERNAME ?= root
  129. TEST_MYSQL_PASSWORD ?=
  130. TEST_MYSQL8_HOST ?= mysql8:3306
  131. TEST_MYSQL8_DBNAME ?= testgitea
  132. TEST_MYSQL8_USERNAME ?= root
  133. TEST_MYSQL8_PASSWORD ?=
  134. TEST_PGSQL_HOST ?= pgsql:5432
  135. TEST_PGSQL_DBNAME ?= testgitea
  136. TEST_PGSQL_USERNAME ?= postgres
  137. TEST_PGSQL_PASSWORD ?= postgres
  138. TEST_PGSQL_SCHEMA ?= gtestschema
  139. TEST_MSSQL_HOST ?= mssql:1433
  140. TEST_MSSQL_DBNAME ?= gitea
  141. TEST_MSSQL_USERNAME ?= sa
  142. TEST_MSSQL_PASSWORD ?= MwantsaSecurePassword1
  143. .PHONY: all
  144. all: build
  145. .PHONY: help
  146. help:
  147. @echo "Make Routines:"
  148. @echo " - \"\" equivalent to \"build\""
  149. @echo " - build build everything"
  150. @echo " - frontend build frontend files"
  151. @echo " - backend build backend files"
  152. @echo " - watch watch everything and continuously rebuild"
  153. @echo " - watch-frontend watch frontend files and continuously rebuild"
  154. @echo " - watch-backend watch backend files and continuously rebuild"
  155. @echo " - clean delete backend and integration files"
  156. @echo " - clean-all delete backend, frontend and integration files"
  157. @echo " - deps install dependencies"
  158. @echo " - deps-docs install docs dependencies"
  159. @echo " - deps-frontend install frontend dependencies"
  160. @echo " - deps-backend install backend dependencies"
  161. @echo " - deps-tools install tool dependencies"
  162. @echo " - deps-py install python dependencies"
  163. @echo " - lint lint everything"
  164. @echo " - lint-fix lint everything and fix issues"
  165. @echo " - lint-actions lint action workflow files"
  166. @echo " - lint-frontend lint frontend files"
  167. @echo " - lint-frontend-fix lint frontend files and fix issues"
  168. @echo " - lint-backend lint backend files"
  169. @echo " - lint-backend-fix lint backend files and fix issues"
  170. @echo " - lint-go lint go files"
  171. @echo " - lint-go-fix lint go files and fix issues"
  172. @echo " - lint-go-vet lint go files with vet"
  173. @echo " - lint-js lint js files"
  174. @echo " - lint-js-fix lint js files and fix issues"
  175. @echo " - lint-css lint css files"
  176. @echo " - lint-css-fix lint css files and fix issues"
  177. @echo " - lint-md lint markdown files"
  178. @echo " - lint-swagger lint swagger files"
  179. @echo " - lint-templates lint template files"
  180. @echo " - checks run various consistency checks"
  181. @echo " - checks-frontend check frontend files"
  182. @echo " - checks-backend check backend files"
  183. @echo " - test test everything"
  184. @echo " - test-frontend test frontend files"
  185. @echo " - test-backend test backend files"
  186. @echo " - test-e2e[\#TestSpecificName] test end to end using playwright"
  187. @echo " - webpack build webpack files"
  188. @echo " - svg build svg files"
  189. @echo " - fomantic build fomantic files"
  190. @echo " - generate run \"go generate\""
  191. @echo " - fmt format the Go code"
  192. @echo " - generate-license update license files"
  193. @echo " - generate-gitignore update gitignore files"
  194. @echo " - generate-manpage generate manpage"
  195. @echo " - generate-swagger generate the swagger spec from code comments"
  196. @echo " - swagger-validate check if the swagger spec is valid"
  197. @echo " - go-licenses regenerate go licenses"
  198. @echo " - tidy run go mod tidy"
  199. @echo " - test[\#TestSpecificName] run unit test"
  200. @echo " - test-sqlite[\#TestSpecificName] run integration test for sqlite"
  201. .PHONY: go-check
  202. go-check:
  203. $(eval MIN_GO_VERSION_STR := $(shell grep -Eo '^go\s+[0-9]+\.[0-9]+' go.mod | cut -d' ' -f2))
  204. $(eval MIN_GO_VERSION := $(shell printf "%03d%03d" $(shell echo '$(MIN_GO_VERSION_STR)' | tr '.' ' ')))
  205. $(eval GO_VERSION := $(shell printf "%03d%03d" $(shell $(GO) version | grep -Eo '[0-9]+\.[0-9]+' | tr '.' ' ');))
  206. @if [ "$(GO_VERSION)" -lt "$(MIN_GO_VERSION)" ]; then \
  207. echo "Gitea requires Go $(MIN_GO_VERSION_STR) or greater to build. You can get it at https://go.dev/dl/"; \
  208. exit 1; \
  209. fi
  210. .PHONY: git-check
  211. git-check:
  212. @if git lfs >/dev/null 2>&1 ; then : ; else \
  213. echo "Gitea requires git with lfs support to run tests." ; \
  214. exit 1; \
  215. fi
  216. .PHONY: node-check
  217. node-check:
  218. $(eval MIN_NODE_VERSION_STR := $(shell grep -Eo '"node":.*[0-9.]+"' package.json | sed -n 's/.*[^0-9.]\([0-9.]*\)"/\1/p'))
  219. $(eval MIN_NODE_VERSION := $(shell printf "%03d%03d%03d" $(shell echo '$(MIN_NODE_VERSION_STR)' | tr '.' ' ')))
  220. $(eval NODE_VERSION := $(shell printf "%03d%03d%03d" $(shell node -v | cut -c2- | tr '.' ' ');))
  221. $(eval NPM_MISSING := $(shell hash npm > /dev/null 2>&1 || echo 1))
  222. @if [ "$(NODE_VERSION)" -lt "$(MIN_NODE_VERSION)" -o "$(NPM_MISSING)" = "1" ]; then \
  223. 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/"; \
  224. exit 1; \
  225. fi
  226. .PHONY: clean-all
  227. clean-all: clean
  228. rm -rf $(WEBPACK_DEST_ENTRIES) node_modules
  229. .PHONY: clean
  230. clean:
  231. $(GO) clean -i ./...
  232. rm -rf $(EXECUTABLE) $(DIST) $(BINDATA_DEST) $(BINDATA_HASH) \
  233. integrations*.test \
  234. e2e*.test \
  235. tests/integration/gitea-integration-pgsql/ tests/integration/gitea-integration-mysql/ tests/integration/gitea-integration-mysql8/ tests/integration/gitea-integration-sqlite/ \
  236. tests/integration/gitea-integration-mssql/ tests/integration/indexers-mysql/ tests/integration/indexers-mysql8/ tests/integration/indexers-pgsql tests/integration/indexers-sqlite \
  237. tests/integration/indexers-mssql tests/mysql.ini tests/mysql8.ini tests/pgsql.ini tests/mssql.ini man/ \
  238. tests/e2e/gitea-e2e-pgsql/ tests/e2e/gitea-e2e-mysql/ tests/e2e/gitea-e2e-mysql8/ tests/e2e/gitea-e2e-sqlite/ \
  239. tests/e2e/gitea-e2e-mssql/ tests/e2e/indexers-mysql/ tests/e2e/indexers-mysql8/ tests/e2e/indexers-pgsql/ tests/e2e/indexers-sqlite/ \
  240. tests/e2e/indexers-mssql/ tests/e2e/reports/ tests/e2e/test-artifacts/ tests/e2e/test-snapshots/
  241. .PHONY: fmt
  242. fmt:
  243. GOFUMPT_PACKAGE=$(GOFUMPT_PACKAGE) $(GO) run build/code-batch-process.go gitea-fmt -w '{file-list}'
  244. $(eval TEMPLATES := $(shell find templates -type f -name '*.tmpl'))
  245. @# strip whitespace after '{{' or '(' and before '}}' or ')' unless there is only
  246. @# whitespace before it
  247. @$(SED_INPLACE) \
  248. -e 's/{{[ ]\{1,\}/{{/g' -e '/^[ ]\{1,\}}}/! s/[ ]\{1,\}}}/}}/g' \
  249. -e 's/([ ]\{1,\}/(/g' -e '/^[ ]\{1,\})/! s/[ ]\{1,\})/)/g' \
  250. $(TEMPLATES)
  251. .PHONY: fmt-check
  252. fmt-check: fmt
  253. @diff=$$(git diff --color=always $(GO_SOURCES) templates $(WEB_DIRS)); \
  254. if [ -n "$$diff" ]; then \
  255. echo "Please run 'make fmt' and commit the result:"; \
  256. echo "$${diff}"; \
  257. exit 1; \
  258. fi
  259. .PHONY: misspell-check
  260. misspell-check:
  261. go run $(MISSPELL_PACKAGE) -error $(GO_DIRS) $(WEB_DIRS)
  262. .PHONY: $(TAGS_EVIDENCE)
  263. $(TAGS_EVIDENCE):
  264. @mkdir -p $(MAKE_EVIDENCE_DIR)
  265. @echo "$(TAGS)" > $(TAGS_EVIDENCE)
  266. ifneq "$(TAGS)" "$(shell cat $(TAGS_EVIDENCE) 2>/dev/null)"
  267. TAGS_PREREQ := $(TAGS_EVIDENCE)
  268. endif
  269. .PHONY: generate-swagger
  270. generate-swagger: $(SWAGGER_SPEC)
  271. $(SWAGGER_SPEC): $(GO_SOURCES_NO_BINDATA)
  272. $(GO) run $(SWAGGER_PACKAGE) generate spec -x "$(SWAGGER_EXCLUDE)" -o './$(SWAGGER_SPEC)'
  273. $(SED_INPLACE) '$(SWAGGER_SPEC_S_TMPL)' './$(SWAGGER_SPEC)'
  274. $(SED_INPLACE) $(SWAGGER_NEWLINE_COMMAND) './$(SWAGGER_SPEC)'
  275. .PHONY: swagger-check
  276. swagger-check: generate-swagger
  277. @diff=$$(git diff --color=always '$(SWAGGER_SPEC)'); \
  278. if [ -n "$$diff" ]; then \
  279. echo "Please run 'make generate-swagger' and commit the result:"; \
  280. echo "$${diff}"; \
  281. exit 1; \
  282. fi
  283. .PHONY: swagger-validate
  284. swagger-validate:
  285. $(SED_INPLACE) '$(SWAGGER_SPEC_S_JSON)' './$(SWAGGER_SPEC)'
  286. $(GO) run $(SWAGGER_PACKAGE) validate './$(SWAGGER_SPEC)'
  287. $(SED_INPLACE) '$(SWAGGER_SPEC_S_TMPL)' './$(SWAGGER_SPEC)'
  288. .PHONY: checks
  289. checks: checks-frontend checks-backend
  290. .PHONY: checks-frontend
  291. checks-frontend: lockfile-check svg-check
  292. .PHONY: checks-backend
  293. checks-backend: tidy-check swagger-check fmt-check misspell-check swagger-validate security-check
  294. .PHONY: lint
  295. lint: lint-frontend lint-backend
  296. .PHONY: lint-fix
  297. lint-fix: lint-frontend-fix lint-backend-fix
  298. .PHONY: lint-frontend
  299. lint-frontend: lint-js lint-css lint-md lint-swagger
  300. .PHONY: lint-frontend-fix
  301. lint-frontend-fix: lint-js-fix lint-css-fix lint-md lint-swagger
  302. .PHONY: lint-backend
  303. lint-backend: lint-go lint-go-vet lint-editorconfig
  304. .PHONY: lint-backend-fix
  305. lint-backend-fix: lint-go-fix lint-go-vet lint-editorconfig
  306. .PHONY: lint-js
  307. lint-js: node_modules
  308. npx eslint --color --max-warnings=0 --ext js,vue web_src/js build *.config.js docs/assets/js tests/e2e
  309. .PHONY: lint-js-fix
  310. lint-js-fix: node_modules
  311. npx eslint --color --max-warnings=0 --ext js,vue web_src/js build *.config.js docs/assets/js tests/e2e --fix
  312. .PHONY: lint-css
  313. lint-css: node_modules
  314. npx stylelint --color --max-warnings=0 web_src/css web_src/js/components/*.vue
  315. .PHONY: lint-css-fix
  316. lint-css-fix: node_modules
  317. npx stylelint --color --max-warnings=0 web_src/css web_src/js/components/*.vue --fix
  318. .PHONY: lint-swagger
  319. lint-swagger: node_modules
  320. npx spectral lint -q -F hint $(SWAGGER_SPEC)
  321. .PHONY: lint-md
  322. lint-md: node_modules
  323. npx markdownlint docs *.md
  324. .PHONY: lint-go
  325. lint-go:
  326. $(GO) run $(GOLANGCI_LINT_PACKAGE) run
  327. .PHONY: lint-go-fix
  328. lint-go-fix:
  329. $(GO) run $(GOLANGCI_LINT_PACKAGE) run --fix
  330. # workaround step for the lint-go-windows CI task because 'go run' can not
  331. # have distinct GOOS/GOARCH for its build and run steps
  332. .PHONY: lint-go-windows
  333. lint-go-windows:
  334. @GOOS= GOARCH= $(GO) install $(GOLANGCI_LINT_PACKAGE)
  335. golangci-lint run
  336. .PHONY: lint-go-vet
  337. lint-go-vet:
  338. @echo "Running go vet..."
  339. @GOOS= GOARCH= $(GO) build code.gitea.io/gitea-vet
  340. @$(GO) vet -vettool=gitea-vet $(GO_PACKAGES)
  341. .PHONY: lint-editorconfig
  342. lint-editorconfig:
  343. $(GO) run $(EDITORCONFIG_CHECKER_PACKAGE) templates .github/workflows
  344. .PHONY: lint-actions
  345. lint-actions:
  346. $(GO) run $(ACTIONLINT_PACKAGE)
  347. .PHONY: lint-templates
  348. lint-templates: .venv
  349. @poetry run djlint $(shell find templates -type f -iname '*.tmpl')
  350. .PHONY: watch
  351. watch:
  352. @bash build/watch.sh
  353. .PHONY: watch-frontend
  354. watch-frontend: node-check node_modules
  355. @rm -rf $(WEBPACK_DEST_ENTRIES)
  356. NODE_ENV=development npx webpack --watch --progress
  357. .PHONY: watch-backend
  358. watch-backend: go-check
  359. GITEA_RUN_MODE=dev $(GO) run $(AIR_PACKAGE) -c .air.toml
  360. .PHONY: test
  361. test: test-frontend test-backend
  362. .PHONY: test-backend
  363. test-backend:
  364. @echo "Running go test with $(GOTESTFLAGS) -tags '$(TEST_TAGS)'..."
  365. @$(GO) test $(GOTESTFLAGS) -tags='$(TEST_TAGS)' $(GO_TEST_PACKAGES)
  366. .PHONY: test-frontend
  367. test-frontend: node_modules
  368. npx vitest
  369. .PHONY: test-check
  370. test-check:
  371. @echo "Running test-check...";
  372. @diff=$$(git status -s); \
  373. if [ -n "$$diff" ]; then \
  374. echo "make test-backend has changed files in the source tree:"; \
  375. echo "$${diff}"; \
  376. echo "You should change the tests to create these files in a temporary directory."; \
  377. echo "Do not simply add these files to .gitignore"; \
  378. exit 1; \
  379. fi
  380. .PHONY: test\#%
  381. test\#%:
  382. @echo "Running go test with -tags '$(TEST_TAGS)'..."
  383. @$(GO) test $(GOTESTFLAGS) -tags='$(TEST_TAGS)' -run $(subst .,/,$*) $(GO_TEST_PACKAGES)
  384. .PHONY: coverage
  385. coverage:
  386. grep '^\(mode: .*\)\|\(.*:[0-9]\+\.[0-9]\+,[0-9]\+\.[0-9]\+ [0-9]\+ [0-9]\+\)$$' coverage.out > coverage-bodged.out
  387. grep '^\(mode: .*\)\|\(.*:[0-9]\+\.[0-9]\+,[0-9]\+\.[0-9]\+ [0-9]\+ [0-9]\+\)$$' integration.coverage.out > integration.coverage-bodged.out
  388. $(GO) run build/gocovmerge.go integration.coverage-bodged.out coverage-bodged.out > coverage.all
  389. .PHONY: unit-test-coverage
  390. unit-test-coverage:
  391. @echo "Running unit-test-coverage $(GOTESTFLAGS) -tags '$(TEST_TAGS)'..."
  392. @$(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
  393. .PHONY: tidy
  394. tidy:
  395. $(eval MIN_GO_VERSION := $(shell grep -Eo '^go\s+[0-9]+\.[0-9.]+' go.mod | cut -d' ' -f2))
  396. $(GO) mod tidy -compat=$(MIN_GO_VERSION)
  397. @$(MAKE) --no-print-directory $(GO_LICENSE_FILE)
  398. vendor: go.mod go.sum
  399. $(GO) mod vendor
  400. @touch vendor
  401. .PHONY: tidy-check
  402. tidy-check: tidy
  403. @diff=$$(git diff --color=always go.mod go.sum $(GO_LICENSE_FILE)); \
  404. if [ -n "$$diff" ]; then \
  405. echo "Please run 'make tidy' and commit the result:"; \
  406. echo "$${diff}"; \
  407. exit 1; \
  408. fi
  409. .PHONY: go-licenses
  410. go-licenses: $(GO_LICENSE_FILE)
  411. $(GO_LICENSE_FILE): go.mod go.sum
  412. -$(GO) run $(GO_LICENSES_PACKAGE) save . --force --save_path=$(GO_LICENSE_TMP_DIR) 2>/dev/null
  413. $(GO) run build/generate-go-licenses.go $(GO_LICENSE_TMP_DIR) $(GO_LICENSE_FILE)
  414. @rm -rf $(GO_LICENSE_TMP_DIR)
  415. generate-ini-sqlite:
  416. sed -e 's|{{REPO_TEST_DIR}}|${REPO_TEST_DIR}|g' \
  417. -e 's|{{TEST_LOGGER}}|$(or $(TEST_LOGGER),test$(COMMA)file)|g' \
  418. -e 's|{{TEST_TYPE}}|$(or $(TEST_TYPE),integration)|g' \
  419. tests/sqlite.ini.tmpl > tests/sqlite.ini
  420. .PHONY: test-sqlite
  421. test-sqlite: integrations.sqlite.test generate-ini-sqlite
  422. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/sqlite.ini ./integrations.sqlite.test
  423. .PHONY: test-sqlite\#%
  424. test-sqlite\#%: integrations.sqlite.test generate-ini-sqlite
  425. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/sqlite.ini ./integrations.sqlite.test -test.run $(subst .,/,$*)
  426. .PHONY: test-sqlite-migration
  427. test-sqlite-migration: migrations.sqlite.test migrations.individual.sqlite.test
  428. generate-ini-mysql:
  429. sed -e 's|{{TEST_MYSQL_HOST}}|${TEST_MYSQL_HOST}|g' \
  430. -e 's|{{TEST_MYSQL_DBNAME}}|${TEST_MYSQL_DBNAME}|g' \
  431. -e 's|{{TEST_MYSQL_USERNAME}}|${TEST_MYSQL_USERNAME}|g' \
  432. -e 's|{{TEST_MYSQL_PASSWORD}}|${TEST_MYSQL_PASSWORD}|g' \
  433. -e 's|{{REPO_TEST_DIR}}|${REPO_TEST_DIR}|g' \
  434. -e 's|{{TEST_LOGGER}}|$(or $(TEST_LOGGER),test$(COMMA)file)|g' \
  435. -e 's|{{TEST_TYPE}}|$(or $(TEST_TYPE),integration)|g' \
  436. tests/mysql.ini.tmpl > tests/mysql.ini
  437. .PHONY: test-mysql
  438. test-mysql: integrations.mysql.test generate-ini-mysql
  439. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mysql.ini ./integrations.mysql.test
  440. .PHONY: test-mysql\#%
  441. test-mysql\#%: integrations.mysql.test generate-ini-mysql
  442. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mysql.ini ./integrations.mysql.test -test.run $(subst .,/,$*)
  443. .PHONY: test-mysql-migration
  444. test-mysql-migration: migrations.mysql.test migrations.individual.mysql.test
  445. generate-ini-mysql8:
  446. sed -e 's|{{TEST_MYSQL8_HOST}}|${TEST_MYSQL8_HOST}|g' \
  447. -e 's|{{TEST_MYSQL8_DBNAME}}|${TEST_MYSQL8_DBNAME}|g' \
  448. -e 's|{{TEST_MYSQL8_USERNAME}}|${TEST_MYSQL8_USERNAME}|g' \
  449. -e 's|{{TEST_MYSQL8_PASSWORD}}|${TEST_MYSQL8_PASSWORD}|g' \
  450. -e 's|{{REPO_TEST_DIR}}|${REPO_TEST_DIR}|g' \
  451. -e 's|{{TEST_LOGGER}}|$(or $(TEST_LOGGER),test$(COMMA)file)|g' \
  452. -e 's|{{TEST_TYPE}}|$(or $(TEST_TYPE),integration)|g' \
  453. tests/mysql8.ini.tmpl > tests/mysql8.ini
  454. .PHONY: test-mysql8
  455. test-mysql8: integrations.mysql8.test generate-ini-mysql8
  456. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mysql8.ini ./integrations.mysql8.test
  457. .PHONY: test-mysql8\#%
  458. test-mysql8\#%: integrations.mysql8.test generate-ini-mysql8
  459. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mysql8.ini ./integrations.mysql8.test -test.run $(subst .,/,$*)
  460. .PHONY: test-mysql8-migration
  461. test-mysql8-migration: migrations.mysql8.test migrations.individual.mysql8.test
  462. generate-ini-pgsql:
  463. sed -e 's|{{TEST_PGSQL_HOST}}|${TEST_PGSQL_HOST}|g' \
  464. -e 's|{{TEST_PGSQL_DBNAME}}|${TEST_PGSQL_DBNAME}|g' \
  465. -e 's|{{TEST_PGSQL_USERNAME}}|${TEST_PGSQL_USERNAME}|g' \
  466. -e 's|{{TEST_PGSQL_PASSWORD}}|${TEST_PGSQL_PASSWORD}|g' \
  467. -e 's|{{TEST_PGSQL_SCHEMA}}|${TEST_PGSQL_SCHEMA}|g' \
  468. -e 's|{{REPO_TEST_DIR}}|${REPO_TEST_DIR}|g' \
  469. -e 's|{{TEST_LOGGER}}|$(or $(TEST_LOGGER),test$(COMMA)file)|g' \
  470. -e 's|{{TEST_TYPE}}|$(or $(TEST_TYPE),integration)|g' \
  471. tests/pgsql.ini.tmpl > tests/pgsql.ini
  472. .PHONY: test-pgsql
  473. test-pgsql: integrations.pgsql.test generate-ini-pgsql
  474. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/pgsql.ini ./integrations.pgsql.test
  475. .PHONY: test-pgsql\#%
  476. test-pgsql\#%: integrations.pgsql.test generate-ini-pgsql
  477. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/pgsql.ini ./integrations.pgsql.test -test.run $(subst .,/,$*)
  478. .PHONY: test-pgsql-migration
  479. test-pgsql-migration: migrations.pgsql.test migrations.individual.pgsql.test
  480. generate-ini-mssql:
  481. sed -e 's|{{TEST_MSSQL_HOST}}|${TEST_MSSQL_HOST}|g' \
  482. -e 's|{{TEST_MSSQL_DBNAME}}|${TEST_MSSQL_DBNAME}|g' \
  483. -e 's|{{TEST_MSSQL_USERNAME}}|${TEST_MSSQL_USERNAME}|g' \
  484. -e 's|{{TEST_MSSQL_PASSWORD}}|${TEST_MSSQL_PASSWORD}|g' \
  485. -e 's|{{REPO_TEST_DIR}}|${REPO_TEST_DIR}|g' \
  486. -e 's|{{TEST_LOGGER}}|$(or $(TEST_LOGGER),test$(COMMA)file)|g' \
  487. -e 's|{{TEST_TYPE}}|$(or $(TEST_TYPE),integration)|g' \
  488. tests/mssql.ini.tmpl > tests/mssql.ini
  489. .PHONY: test-mssql
  490. test-mssql: integrations.mssql.test generate-ini-mssql
  491. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mssql.ini ./integrations.mssql.test
  492. .PHONY: test-mssql\#%
  493. test-mssql\#%: integrations.mssql.test generate-ini-mssql
  494. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mssql.ini ./integrations.mssql.test -test.run $(subst .,/,$*)
  495. .PHONY: test-mssql-migration
  496. test-mssql-migration: migrations.mssql.test migrations.individual.mssql.test
  497. .PHONY: playwright
  498. playwright: $(PLAYWRIGHT_DIR)
  499. npm install --no-save @playwright/test
  500. npx playwright install $(PLAYWRIGHT_FLAGS)
  501. .PHONY: test-e2e%
  502. test-e2e%: TEST_TYPE ?= e2e
  503. # Clear display env variable. Otherwise, chromium tests can fail.
  504. DISPLAY=
  505. .PHONY: test-e2e
  506. test-e2e: test-e2e-sqlite
  507. .PHONY: test-e2e-sqlite
  508. test-e2e-sqlite: playwright e2e.sqlite.test generate-ini-sqlite
  509. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/sqlite.ini ./e2e.sqlite.test
  510. .PHONY: test-e2e-sqlite\#%
  511. test-e2e-sqlite\#%: playwright e2e.sqlite.test generate-ini-sqlite
  512. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/sqlite.ini ./e2e.sqlite.test -test.run TestE2e/$*
  513. .PHONY: test-e2e-mysql
  514. test-e2e-mysql: playwright e2e.mysql.test generate-ini-mysql
  515. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mysql.ini ./e2e.mysql.test
  516. .PHONY: test-e2e-mysql\#%
  517. test-e2e-mysql\#%: playwright e2e.mysql.test generate-ini-mysql
  518. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mysql.ini ./e2e.mysql.test -test.run TestE2e/$*
  519. .PHONY: test-e2e-mysql8
  520. test-e2e-mysql8: playwright e2e.mysql8.test generate-ini-mysql8
  521. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mysql8.ini ./e2e.mysql8.test
  522. .PHONY: test-e2e-mysql8\#%
  523. test-e2e-mysql8\#%: playwright e2e.mysql8.test generate-ini-mysql8
  524. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mysql8.ini ./e2e.mysql8.test -test.run TestE2e/$*
  525. .PHONY: test-e2e-pgsql
  526. test-e2e-pgsql: playwright e2e.pgsql.test generate-ini-pgsql
  527. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/pgsql.ini ./e2e.pgsql.test
  528. .PHONY: test-e2e-pgsql\#%
  529. test-e2e-pgsql\#%: playwright e2e.pgsql.test generate-ini-pgsql
  530. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/pgsql.ini ./e2e.pgsql.test -test.run TestE2e/$*
  531. .PHONY: test-e2e-mssql
  532. test-e2e-mssql: playwright e2e.mssql.test generate-ini-mssql
  533. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mssql.ini ./e2e.mssql.test
  534. .PHONY: test-e2e-mssql\#%
  535. test-e2e-mssql\#%: playwright e2e.mssql.test generate-ini-mssql
  536. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mssql.ini ./e2e.mssql.test -test.run TestE2e/$*
  537. .PHONY: bench-sqlite
  538. bench-sqlite: integrations.sqlite.test generate-ini-sqlite
  539. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/sqlite.ini ./integrations.sqlite.test -test.cpuprofile=cpu.out -test.run DontRunTests -test.bench .
  540. .PHONY: bench-mysql
  541. bench-mysql: integrations.mysql.test generate-ini-mysql
  542. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mysql.ini ./integrations.mysql.test -test.cpuprofile=cpu.out -test.run DontRunTests -test.bench .
  543. .PHONY: bench-mssql
  544. bench-mssql: integrations.mssql.test generate-ini-mssql
  545. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mssql.ini ./integrations.mssql.test -test.cpuprofile=cpu.out -test.run DontRunTests -test.bench .
  546. .PHONY: bench-pgsql
  547. bench-pgsql: integrations.pgsql.test generate-ini-pgsql
  548. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/pgsql.ini ./integrations.pgsql.test -test.cpuprofile=cpu.out -test.run DontRunTests -test.bench .
  549. .PHONY: integration-test-coverage
  550. integration-test-coverage: integrations.cover.test generate-ini-mysql
  551. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mysql.ini ./integrations.cover.test -test.coverprofile=integration.coverage.out
  552. .PHONY: integration-test-coverage-sqlite
  553. integration-test-coverage-sqlite: integrations.cover.sqlite.test generate-ini-sqlite
  554. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/sqlite.ini ./integrations.cover.sqlite.test -test.coverprofile=integration.coverage.out
  555. integrations.mysql.test: git-check $(GO_SOURCES)
  556. $(GO) test $(GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration -o integrations.mysql.test
  557. integrations.mysql8.test: git-check $(GO_SOURCES)
  558. $(GO) test $(GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration -o integrations.mysql8.test
  559. integrations.pgsql.test: git-check $(GO_SOURCES)
  560. $(GO) test $(GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration -o integrations.pgsql.test
  561. integrations.mssql.test: git-check $(GO_SOURCES)
  562. $(GO) test $(GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration -o integrations.mssql.test
  563. integrations.sqlite.test: git-check $(GO_SOURCES)
  564. $(GO) test $(GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration -o integrations.sqlite.test -tags '$(TEST_TAGS)'
  565. integrations.cover.test: git-check $(GO_SOURCES)
  566. $(GO) test $(GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration -coverpkg $(shell echo $(GO_TEST_PACKAGES) | tr ' ' ',') -o integrations.cover.test
  567. integrations.cover.sqlite.test: git-check $(GO_SOURCES)
  568. $(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)'
  569. .PHONY: migrations.mysql.test
  570. migrations.mysql.test: $(GO_SOURCES) generate-ini-mysql
  571. $(GO) test $(GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration/migration-test -o migrations.mysql.test
  572. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mysql.ini ./migrations.mysql.test
  573. .PHONY: migrations.mysql8.test
  574. migrations.mysql8.test: $(GO_SOURCES) generate-ini-mysql8
  575. $(GO) test $(GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration/migration-test -o migrations.mysql8.test
  576. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mysql8.ini ./migrations.mysql8.test
  577. .PHONY: migrations.pgsql.test
  578. migrations.pgsql.test: $(GO_SOURCES) generate-ini-pgsql
  579. $(GO) test $(GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration/migration-test -o migrations.pgsql.test
  580. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/pgsql.ini ./migrations.pgsql.test
  581. .PHONY: migrations.mssql.test
  582. migrations.mssql.test: $(GO_SOURCES) generate-ini-mssql
  583. $(GO) test $(GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration/migration-test -o migrations.mssql.test
  584. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mssql.ini ./migrations.mssql.test
  585. .PHONY: migrations.sqlite.test
  586. migrations.sqlite.test: $(GO_SOURCES) generate-ini-sqlite
  587. $(GO) test $(GOTESTFLAGS) -c code.gitea.io/gitea/tests/integration/migration-test -o migrations.sqlite.test -tags '$(TEST_TAGS)'
  588. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/sqlite.ini ./migrations.sqlite.test
  589. .PHONY: migrations.individual.mysql.test
  590. migrations.individual.mysql.test: $(GO_SOURCES)
  591. for pkg in $(shell $(GO) list code.gitea.io/gitea/models/migrations/...); do \
  592. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mysql.ini $(GO) test $(GOTESTFLAGS) -tags '$(TEST_TAGS)' $$pkg; \
  593. done
  594. .PHONY: migrations.individual.mysql8.test
  595. migrations.individual.mysql8.test: $(GO_SOURCES)
  596. for pkg in $(shell $(GO) list code.gitea.io/gitea/models/migrations/...); do \
  597. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mysql8.ini $(GO) test $(GOTESTFLAGS) -tags '$(TEST_TAGS)' $$pkg; \
  598. done
  599. .PHONY: migrations.individual.mysql8.test\#%
  600. migrations.individual.sqlite.test\#%: $(GO_SOURCES) generate-ini-sqlite
  601. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/sqlite.ini $(GO) test $(GOTESTFLAGS) -tags '$(TEST_TAGS)' code.gitea.io/gitea/models/migrations/$*
  602. .PHONY: migrations.individual.pgsql.test
  603. migrations.individual.pgsql.test: $(GO_SOURCES)
  604. for pkg in $(shell $(GO) list code.gitea.io/gitea/models/migrations/...); do \
  605. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/pgsql.ini $(GO) test $(GOTESTFLAGS) -tags '$(TEST_TAGS)' $$pkg; \
  606. done
  607. .PHONY: migrations.individual.pgsql.test\#%
  608. migrations.individual.pgsql.test\#%: $(GO_SOURCES) generate-ini-pgsql
  609. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/pgsql.ini $(GO) test $(GOTESTFLAGS) -tags '$(TEST_TAGS)' code.gitea.io/gitea/models/migrations/$*
  610. .PHONY: migrations.individual.mssql.test
  611. migrations.individual.mssql.test: $(GO_SOURCES) generate-ini-mssql
  612. for pkg in $(shell $(GO) list code.gitea.io/gitea/models/migrations/...); do \
  613. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mssql.ini $(GO) test $(GOTESTFLAGS) -tags '$(TEST_TAGS)' $$pkg -test.failfast; \
  614. done
  615. .PHONY: migrations.individual.mssql.test\#%
  616. migrations.individual.mssql.test\#%: $(GO_SOURCES) generate-ini-mssql
  617. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/mssql.ini $(GO) test $(GOTESTFLAGS) -tags '$(TEST_TAGS)' code.gitea.io/gitea/models/migrations/$*
  618. .PHONY: migrations.individual.sqlite.test
  619. migrations.individual.sqlite.test: $(GO_SOURCES) generate-ini-sqlite
  620. for pkg in $(shell $(GO) list code.gitea.io/gitea/models/migrations/...); do \
  621. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/sqlite.ini $(GO) test $(GOTESTFLAGS) -tags '$(TEST_TAGS)' $$pkg; \
  622. done
  623. .PHONY: migrations.individual.sqlite.test\#%
  624. migrations.individual.sqlite.test\#%: $(GO_SOURCES) generate-ini-sqlite
  625. GITEA_ROOT="$(CURDIR)" GITEA_CONF=tests/sqlite.ini $(GO) test $(GOTESTFLAGS) -tags '$(TEST_TAGS)' code.gitea.io/gitea/models/migrations/$*
  626. e2e.mysql.test: $(GO_SOURCES)
  627. $(GO) test $(GOTESTFLAGS) -c code.gitea.io/gitea/tests/e2e -o e2e.mysql.test
  628. e2e.mysql8.test: $(GO_SOURCES)
  629. $(GO) test $(GOTESTFLAGS) -c code.gitea.io/gitea/tests/e2e -o e2e.mysql8.test
  630. e2e.pgsql.test: $(GO_SOURCES)
  631. $(GO) test $(GOTESTFLAGS) -c code.gitea.io/gitea/tests/e2e -o e2e.pgsql.test
  632. e2e.mssql.test: $(GO_SOURCES)
  633. $(GO) test $(GOTESTFLAGS) -c code.gitea.io/gitea/tests/e2e -o e2e.mssql.test
  634. e2e.sqlite.test: $(GO_SOURCES)
  635. $(GO) test $(GOTESTFLAGS) -c code.gitea.io/gitea/tests/e2e -o e2e.sqlite.test -tags '$(TEST_TAGS)'
  636. .PHONY: check
  637. check: test
  638. .PHONY: install $(TAGS_PREREQ)
  639. install: $(wildcard *.go)
  640. CGO_CFLAGS="$(CGO_CFLAGS)" $(GO) install -v -tags '$(TAGS)' -ldflags '-s -w $(LDFLAGS)'
  641. .PHONY: build
  642. build: frontend backend
  643. .PHONY: frontend
  644. frontend: $(WEBPACK_DEST)
  645. .PHONY: backend
  646. backend: go-check generate-backend $(EXECUTABLE)
  647. # 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
  648. .PHONY: generate
  649. generate: generate-backend
  650. .PHONY: generate-backend
  651. generate-backend: $(TAGS_PREREQ) generate-go
  652. .PHONY: generate-go
  653. generate-go: $(TAGS_PREREQ)
  654. @echo "Running go generate..."
  655. @CC= GOOS= GOARCH= $(GO) generate -tags '$(TAGS)' $(GO_PACKAGES)
  656. .PHONY: security-check
  657. security-check:
  658. go run $(GOVULNCHECK_PACKAGE) ./...
  659. $(EXECUTABLE): $(GO_SOURCES) $(TAGS_PREREQ)
  660. CGO_CFLAGS="$(CGO_CFLAGS)" $(GO) build $(GOFLAGS) $(EXTRA_GOFLAGS) -tags '$(TAGS)' -ldflags '-s -w $(LDFLAGS)' -o $@
  661. .PHONY: release
  662. release: frontend generate release-windows release-linux release-darwin release-freebsd release-copy release-compress vendor release-sources release-docs release-check
  663. $(DIST_DIRS):
  664. mkdir -p $(DIST_DIRS)
  665. .PHONY: release-windows
  666. release-windows: | $(DIST_DIRS)
  667. CGO_CFLAGS="$(CGO_CFLAGS)" $(GO) run $(XGO_PACKAGE) -go $(XGO_VERSION) -buildmode exe -dest $(DIST)/binaries -tags 'osusergo $(TAGS)' -ldflags '-linkmode external -extldflags "-static" $(LDFLAGS)' -targets 'windows/*' -out gitea-$(VERSION) .
  668. ifeq (,$(findstring gogit,$(TAGS)))
  669. CGO_CFLAGS="$(CGO_CFLAGS)" $(GO) run $(XGO_PACKAGE) -go $(XGO_VERSION) -buildmode exe -dest $(DIST)/binaries -tags 'osusergo gogit $(TAGS)' -ldflags '-linkmode external -extldflags "-static" $(LDFLAGS)' -targets 'windows/*' -out gitea-$(VERSION)-gogit .
  670. endif
  671. .PHONY: release-linux
  672. release-linux: | $(DIST_DIRS)
  673. 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) .
  674. .PHONY: release-darwin
  675. release-darwin: | $(DIST_DIRS)
  676. 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) .
  677. .PHONY: release-freebsd
  678. release-freebsd: | $(DIST_DIRS)
  679. CGO_CFLAGS="$(CGO_CFLAGS)" $(GO) run $(XGO_PACKAGE) -go $(XGO_VERSION) -dest $(DIST)/binaries -tags 'netgo osusergo $(TAGS)' -ldflags '$(LDFLAGS)' -targets 'freebsd/amd64' -out gitea-$(VERSION) .
  680. .PHONY: release-copy
  681. release-copy: | $(DIST_DIRS)
  682. cd $(DIST); for file in `find . -type f -name "*"`; do cp $${file} ./release/; done;
  683. .PHONY: release-check
  684. release-check: | $(DIST_DIRS)
  685. cd $(DIST)/release/; for file in `find . -type f -name "*"`; do echo "checksumming $${file}" && $(SHASUM) `echo $${file} | sed 's/^..//'` > $${file}.sha256; done;
  686. .PHONY: release-compress
  687. release-compress: | $(DIST_DIRS)
  688. cd $(DIST)/release/; for file in `find . -type f -name "*"`; do echo "compressing $${file}" && $(GO) run $(GXZ_PAGAGE) -k -9 $${file}; done;
  689. .PHONY: release-sources
  690. release-sources: | $(DIST_DIRS)
  691. echo $(VERSION) > $(STORED_VERSION_FILE)
  692. # bsdtar needs a ^ to prevent matching subdirectories
  693. $(eval EXCL := --exclude=$(shell tar --help | grep -q bsdtar && echo "^")./)
  694. # use transform to a add a release-folder prefix; in bsdtar the transform parameter equivalent is -s
  695. $(eval TRANSFORM := $(shell tar --help | grep -q bsdtar && echo "-s '/^./gitea-src-$(VERSION)/'" || echo "--transform 's|^./|gitea-src-$(VERSION)/|'"))
  696. tar $(addprefix $(EXCL),$(TAR_EXCLUDES)) $(TRANSFORM) -czf $(DIST)/release/gitea-src-$(VERSION).tar.gz .
  697. rm -f $(STORED_VERSION_FILE)
  698. .PHONY: release-docs
  699. release-docs: | $(DIST_DIRS) docs
  700. tar -czf $(DIST)/release/gitea-docs-$(VERSION).tar.gz -C ./docs/public .
  701. .PHONY: docs
  702. docs: deps-docs
  703. cd docs; make trans-copy clean build-offline;
  704. .PHONY: deps-docs
  705. deps-docs:
  706. @hash hugo > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  707. curl -sL https://github.com/gohugoio/hugo/releases/download/v$(HUGO_VERSION)/hugo_$(HUGO_VERSION)_Linux-64bit.tar.gz | tar zxf - -C /tmp && mkdir -p ~/go/bin && mv /tmp/hugo ~/go/bin/hugo && chmod +x ~/go/bin/hugo; \
  708. fi
  709. .PHONY: deps
  710. deps: deps-frontend deps-backend deps-tools deps-docs deps-py
  711. .PHONY: deps-py
  712. deps-py: .venv
  713. .PHONY: deps-frontend
  714. deps-frontend: node_modules
  715. .PHONY: deps-backend
  716. deps-backend:
  717. $(GO) mod download
  718. .PHONY: deps-tools
  719. deps-tools:
  720. $(GO) install $(AIR_PACKAGE)
  721. $(GO) install $(EDITORCONFIG_CHECKER_PACKAGE)
  722. $(GO) install $(GOFUMPT_PACKAGE)
  723. $(GO) install $(GOLANGCI_LINT_PACKAGE)
  724. $(GO) install $(GXZ_PAGAGE)
  725. $(GO) install $(MISSPELL_PACKAGE)
  726. $(GO) install $(SWAGGER_PACKAGE)
  727. $(GO) install $(XGO_PACKAGE)
  728. $(GO) install $(GO_LICENSES_PACKAGE)
  729. $(GO) install $(GOVULNCHECK_PACKAGE)
  730. $(GO) install $(ACTIONLINT_PACKAGE)
  731. node_modules: package-lock.json
  732. npm install --no-save
  733. @touch node_modules
  734. .venv: poetry.lock
  735. poetry install
  736. @touch .venv
  737. .PHONY: npm-update
  738. npm-update: node-check | node_modules
  739. npx updates -u -f package.json
  740. rm -rf node_modules package-lock.json
  741. npm install --package-lock
  742. @touch node_modules
  743. .PHONY: poetry-update
  744. poetry-update: node-check | node_modules
  745. npx updates -u -f pyproject.toml
  746. rm -rf .venv poetry.lock
  747. poetry install
  748. @touch .venv
  749. .PHONY: fomantic
  750. fomantic:
  751. rm -rf $(FOMANTIC_WORK_DIR)/build
  752. cd $(FOMANTIC_WORK_DIR) && npm install --no-save
  753. cp -f $(FOMANTIC_WORK_DIR)/theme.config.less $(FOMANTIC_WORK_DIR)/node_modules/fomantic-ui/src/theme.config
  754. cp -rf $(FOMANTIC_WORK_DIR)/_site $(FOMANTIC_WORK_DIR)/node_modules/fomantic-ui/src/
  755. cd $(FOMANTIC_WORK_DIR) && npx gulp -f node_modules/fomantic-ui/gulpfile.js build
  756. # fomantic uses "touchstart" as click event for some browsers, it's not ideal, so we force fomantic to always use "click" as click event
  757. $(SED_INPLACE) -e 's/clickEvent[ \t]*=/clickEvent = "click", unstableClickEvent =/g' $(FOMANTIC_WORK_DIR)/build/semantic.js
  758. $(SED_INPLACE) -e 's/\r//g' $(FOMANTIC_WORK_DIR)/build/semantic.css $(FOMANTIC_WORK_DIR)/build/semantic.js
  759. rm -f $(FOMANTIC_WORK_DIR)/build/*.min.*
  760. .PHONY: webpack
  761. webpack: $(WEBPACK_DEST)
  762. $(WEBPACK_DEST): $(WEBPACK_SOURCES) $(WEBPACK_CONFIGS) package-lock.json
  763. @$(MAKE) -s node-check node_modules
  764. rm -rf $(WEBPACK_DEST_ENTRIES)
  765. npx webpack
  766. @touch $(WEBPACK_DEST)
  767. .PHONY: svg
  768. svg: node-check | node_modules
  769. rm -rf $(SVG_DEST_DIR)
  770. node build/generate-svg.js
  771. .PHONY: svg-check
  772. svg-check: svg
  773. @git add $(SVG_DEST_DIR)
  774. @diff=$$(git diff --color=always --cached $(SVG_DEST_DIR)); \
  775. if [ -n "$$diff" ]; then \
  776. echo "Please run 'make svg' and 'git add $(SVG_DEST_DIR)' and commit the result:"; \
  777. echo "$${diff}"; \
  778. exit 1; \
  779. fi
  780. .PHONY: lockfile-check
  781. lockfile-check:
  782. npm install --package-lock-only
  783. @diff=$$(git diff --color=always package-lock.json); \
  784. if [ -n "$$diff" ]; then \
  785. echo "package-lock.json is inconsistent with package.json"; \
  786. echo "Please run 'npm install --package-lock-only' and commit the result:"; \
  787. echo "$${diff}"; \
  788. exit 1; \
  789. fi
  790. .PHONY: update-translations
  791. update-translations:
  792. mkdir -p ./translations
  793. cd ./translations && curl -L https://crowdin.com/download/project/gitea.zip > gitea.zip && unzip gitea.zip
  794. rm ./translations/gitea.zip
  795. $(SED_INPLACE) -e 's/="/=/g' -e 's/"$$//g' ./translations/*.ini
  796. $(SED_INPLACE) -e 's/\\"/"/g' ./translations/*.ini
  797. mv ./translations/*.ini ./options/locale/
  798. rmdir ./translations
  799. .PHONY: generate-license
  800. generate-license:
  801. $(GO) run build/generate-licenses.go
  802. .PHONY: generate-gitignore
  803. generate-gitignore:
  804. $(GO) run build/generate-gitignores.go
  805. .PHONY: generate-images
  806. generate-images: | node_modules
  807. npm install --no-save --no-package-lock fabric@5 imagemin-zopfli@7
  808. node build/generate-images.js $(TAGS)
  809. .PHONY: generate-manpage
  810. generate-manpage:
  811. @[ -f gitea ] || make backend
  812. @mkdir -p man/man1/ man/man5
  813. @./gitea docs --man > man/man1/gitea.1
  814. @gzip -9 man/man1/gitea.1 && echo man/man1/gitea.1.gz created
  815. @#TODO A small script that formats config-cheat-sheet.en-us.md nicely for use as a config man page
  816. .PHONY: docker
  817. docker:
  818. docker build --disable-content-trust=false -t $(DOCKER_REF) .
  819. # support also build args docker build --build-arg GITEA_VERSION=v1.2.3 --build-arg TAGS="bindata sqlite sqlite_unlock_notify" .
  820. # This endif closes the if at the top of the file
  821. endif