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 21KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563
  1. DIST := dist
  2. IMPORT := code.gitea.io/gitea
  3. export GO111MODULE=off
  4. GO ?= go
  5. SED_INPLACE := sed -i
  6. SHASUM ?= shasum -a 256
  7. export PATH := $($(GO) env GOPATH)/bin:$(PATH)
  8. ifeq ($(OS), Windows_NT)
  9. EXECUTABLE ?= gitea.exe
  10. else
  11. EXECUTABLE ?= gitea
  12. UNAME_S := $(shell uname -s)
  13. ifeq ($(UNAME_S),Darwin)
  14. SED_INPLACE := sed -i ''
  15. endif
  16. ifeq ($(UNAME_S),FreeBSD)
  17. SED_INPLACE := sed -i ''
  18. endif
  19. endif
  20. GOFILES := $(shell find . -name "*.go" -type f ! -path "./vendor/*" ! -path "*/bindata.go")
  21. GOFMT ?= gofmt -s
  22. GOFLAGS := -v
  23. EXTRA_GOFLAGS ?=
  24. MAKE_VERSION := $(shell $(MAKE) -v | head -n 1)
  25. ifneq ($(DRONE_TAG),)
  26. VERSION ?= $(subst v,,$(DRONE_TAG))
  27. GITEA_VERSION ?= $(VERSION)
  28. else
  29. ifneq ($(DRONE_BRANCH),)
  30. VERSION ?= $(subst release/v,,$(DRONE_BRANCH))
  31. else
  32. VERSION ?= master
  33. endif
  34. GITEA_VERSION ?= $(shell git describe --tags --always | sed 's/-/+/' | sed 's/^v//')
  35. endif
  36. LDFLAGS := $(LDFLAGS) -X "main.MakeVersion=$(MAKE_VERSION)" -X "main.Version=$(GITEA_VERSION)" -X "main.Tags=$(TAGS)"
  37. PACKAGES ?= $(filter-out code.gitea.io/gitea/integrations/migration-test,$(filter-out code.gitea.io/gitea/integrations,$(shell GO111MODULE=on $(GO) list -mod=vendor ./... | grep -v /vendor/)))
  38. GO_SOURCES ?= $(shell find . -name "*.go" -type f)
  39. JS_SOURCES ?= $(shell find web_src/js web_src/css -type f)
  40. CSS_SOURCES ?= $(shell find web_src/less -type f)
  41. JS_DEST := public/js/index.js
  42. CSS_DEST := public/css/index.css
  43. BINDATA_DEST := modules/public/bindata.go modules/options/bindata.go modules/templates/bindata.go
  44. JS_DEST_DIR := public/js
  45. CSS_DEST_DIR := public/css
  46. TAGS ?=
  47. TMPDIR := $(shell mktemp -d 2>/dev/null || mktemp -d -t 'gitea-temp')
  48. #To update swagger use: GO111MODULE=on go get -u github.com/go-swagger/go-swagger/cmd/swagger@v0.20.1
  49. SWAGGER := GO111MODULE=on $(GO) run -mod=vendor github.com/go-swagger/go-swagger/cmd/swagger
  50. SWAGGER_SPEC := templates/swagger/v1_json.tmpl
  51. SWAGGER_SPEC_S_TMPL := s|"basePath": *"/api/v1"|"basePath": "{{AppSubUrl}}/api/v1"|g
  52. SWAGGER_SPEC_S_JSON := s|"basePath": *"{{AppSubUrl}}/api/v1"|"basePath": "/api/v1"|g
  53. SWAGGER_NEWLINE_COMMAND := -e '$$a\'
  54. TEST_MYSQL_HOST ?= mysql:3306
  55. TEST_MYSQL_DBNAME ?= testgitea
  56. TEST_MYSQL_USERNAME ?= root
  57. TEST_MYSQL_PASSWORD ?=
  58. TEST_MYSQL8_HOST ?= mysql8:3306
  59. TEST_MYSQL8_DBNAME ?= testgitea
  60. TEST_MYSQL8_USERNAME ?= root
  61. TEST_MYSQL8_PASSWORD ?=
  62. TEST_PGSQL_HOST ?= pgsql:5432
  63. TEST_PGSQL_DBNAME ?= testgitea
  64. TEST_PGSQL_USERNAME ?= postgres
  65. TEST_PGSQL_PASSWORD ?= postgres
  66. TEST_MSSQL_HOST ?= mssql:1433
  67. TEST_MSSQL_DBNAME ?= gitea
  68. TEST_MSSQL_USERNAME ?= sa
  69. TEST_MSSQL_PASSWORD ?= MwantsaSecurePassword1
  70. # $(call strip-suffix,filename)
  71. strip-suffix = $(firstword $(subst ., ,$(1)))
  72. .PHONY: all
  73. all: build
  74. include docker/Makefile
  75. .PHONY: help
  76. help:
  77. @echo "Make Routines:"
  78. @echo " - \"\" equivalent to \"build\""
  79. @echo " - build creates the entire project"
  80. @echo " - clean delete integration files and build files but not css and js files"
  81. @echo " - clean-all delete all generated files (integration test, build, css and js files)"
  82. @echo " - css rebuild only css files"
  83. @echo " - js rebuild only js files"
  84. @echo " - generate run \"make css js\" and \"go generate\""
  85. @echo " - fmt format the code"
  86. @echo " - generate-swagger generate the swagger spec from code comments"
  87. @echo " - swagger-validate check if the swagger spec is valide"
  88. @echo " - revive run code linter revive"
  89. @echo " - misspell check if a word is written wrong"
  90. @echo " - vet examines Go source code and reports suspicious constructs"
  91. @echo " - test run unit test"
  92. @echo " - test-sqlite run integration test for sqlite"
  93. .PHONY: go-check
  94. go-check:
  95. $(eval GO_VERSION := $(shell printf "%03d%03d%03d" $(shell go version | grep -Eo '[0-9]+\.?[0-9]+?\.?[0-9]?\s' | tr '.' ' ');))
  96. @if [ "$(GO_VERSION)" -lt "001011000" ]; then \
  97. echo "Gitea requires Go 1.11.0 or greater to build. You can get it at https://golang.org/dl/"; \
  98. exit 1; \
  99. fi
  100. .PHONY: node-check
  101. node-check:
  102. $(eval NODE_VERSION := $(shell printf "%03d%03d%03d" $(shell node -v | grep -Eo '[0-9]+\.?[0-9]+?\.?[0-9]?' | tr '.' ' ');))
  103. $(eval NPM_MISSING := $(shell hash npm > /dev/null 2>&1 || echo 1))
  104. @if [ "$(NODE_VERSION)" -lt "010000000" -o "$(NPM_MISSING)" = "1" ]; then \
  105. echo "Gitea requires Node.js 10.0.0 or greater and npm to build. You can get it at https://nodejs.org/en/download/"; \
  106. exit 1; \
  107. fi
  108. .PHONY: clean-all
  109. clean-all: clean
  110. rm -rf $(JS_DEST_DIR) $(CSS_DEST_DIR)
  111. .PHONY: clean
  112. clean:
  113. $(GO) clean -i ./...
  114. rm -rf $(EXECUTABLE) $(DIST) $(BINDATA_DEST) \
  115. integrations*.test \
  116. integrations/gitea-integration-pgsql/ integrations/gitea-integration-mysql/ integrations/gitea-integration-mysql8/ integrations/gitea-integration-sqlite/ \
  117. integrations/gitea-integration-mssql/ integrations/indexers-mysql/ integrations/indexers-mysql8/ integrations/indexers-pgsql integrations/indexers-sqlite \
  118. integrations/indexers-mssql integrations/mysql.ini integrations/mysql8.ini integrations/pgsql.ini integrations/mssql.ini
  119. .PHONY: fmt
  120. fmt:
  121. $(GOFMT) -w $(GOFILES)
  122. .PHONY: vet
  123. vet:
  124. $(GO) vet $(PACKAGES)
  125. .PHONY: generate
  126. generate: js css
  127. GO111MODULE=on $(GO) generate -mod=vendor $(PACKAGES)
  128. .PHONY: generate-swagger
  129. generate-swagger:
  130. $(SWAGGER) generate spec -o './$(SWAGGER_SPEC)'
  131. $(SED_INPLACE) '$(SWAGGER_SPEC_S_TMPL)' './$(SWAGGER_SPEC)'
  132. $(SED_INPLACE) $(SWAGGER_NEWLINE_COMMAND) './$(SWAGGER_SPEC)'
  133. .PHONY: swagger-check
  134. swagger-check: generate-swagger
  135. @diff=$$(git diff '$(SWAGGER_SPEC)'); \
  136. if [ -n "$$diff" ]; then \
  137. echo "Please run 'make generate-swagger' and commit the result:"; \
  138. echo "$${diff}"; \
  139. exit 1; \
  140. fi;
  141. .PHONY: swagger-validate
  142. swagger-validate:
  143. $(SED_INPLACE) '$(SWAGGER_SPEC_S_JSON)' './$(SWAGGER_SPEC)'
  144. $(SWAGGER) validate './$(SWAGGER_SPEC)'
  145. $(SED_INPLACE) '$(SWAGGER_SPEC_S_TMPL)' './$(SWAGGER_SPEC)'
  146. .PHONY: errcheck
  147. errcheck:
  148. @hash errcheck > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  149. $(GO) get -u github.com/kisielk/errcheck; \
  150. fi
  151. errcheck $(PACKAGES)
  152. .PHONY: lint
  153. lint:
  154. @echo 'make lint is depricated. Use "make revive" if you want to use the old lint tool, or "make golangci-lint" to run a complete code check.'
  155. .PHONY: revive
  156. revive:
  157. @hash revive > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  158. $(GO) get -u github.com/mgechev/revive; \
  159. fi
  160. revive -config .revive.toml -exclude=./vendor/... ./... || exit 1
  161. .PHONY: misspell-check
  162. misspell-check:
  163. @hash misspell > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  164. $(GO) get -u github.com/client9/misspell/cmd/misspell; \
  165. fi
  166. misspell -error -i unknwon,destory $(GOFILES)
  167. .PHONY: misspell
  168. misspell:
  169. @hash misspell > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  170. $(GO) get -u github.com/client9/misspell/cmd/misspell; \
  171. fi
  172. misspell -w -i unknwon $(GOFILES)
  173. .PHONY: fmt-check
  174. fmt-check:
  175. # get all go files and run go fmt on them
  176. @diff=$$($(GOFMT) -d $(GOFILES)); \
  177. if [ -n "$$diff" ]; then \
  178. echo "Please run 'make fmt' and commit the result:"; \
  179. echo "$${diff}"; \
  180. exit 1; \
  181. fi;
  182. .PHONY: test
  183. test:
  184. GO111MODULE=on $(GO) test -mod=vendor -tags='sqlite sqlite_unlock_notify' $(PACKAGES)
  185. .PHONY: test\#%
  186. test\#%:
  187. GO111MODULE=on $(GO) test -mod=vendor -tags='sqlite sqlite_unlock_notify' -run $* $(PACKAGES)
  188. .PHONY: coverage
  189. coverage:
  190. @hash gocovmerge > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  191. $(GO) get -u github.com/wadey/gocovmerge; \
  192. fi
  193. gocovmerge integration.coverage.out $(shell find . -type f -name "coverage.out") > coverage.all;\
  194. .PHONY: unit-test-coverage
  195. unit-test-coverage:
  196. $(GO) test -tags='sqlite sqlite_unlock_notify' -cover -coverprofile coverage.out $(PACKAGES) && echo "\n==>\033[32m Ok\033[m\n" || exit 1
  197. .PHONY: vendor
  198. vendor:
  199. GO111MODULE=on $(GO) mod tidy && GO111MODULE=on $(GO) mod vendor
  200. .PHONY: test-vendor
  201. test-vendor: vendor
  202. @diff=$$(git diff vendor/); \
  203. if [ -n "$$diff" ]; then \
  204. echo "Please run 'make vendor' and commit the result:"; \
  205. echo "$${diff}"; \
  206. exit 1; \
  207. fi;
  208. .PHONY: test-sqlite
  209. test-sqlite: integrations.sqlite.test
  210. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/sqlite.ini ./integrations.sqlite.test
  211. .PHONY: test-sqlite\#%
  212. test-sqlite\#%: integrations.sqlite.test
  213. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/sqlite.ini ./integrations.sqlite.test -test.run $*
  214. .PHONY: test-sqlite-migration
  215. test-sqlite-migration: migrations.sqlite.test
  216. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/sqlite.ini ./migrations.sqlite.test
  217. generate-ini-mysql:
  218. sed -e 's|{{TEST_MYSQL_HOST}}|${TEST_MYSQL_HOST}|g' \
  219. -e 's|{{TEST_MYSQL_DBNAME}}|${TEST_MYSQL_DBNAME}|g' \
  220. -e 's|{{TEST_MYSQL_USERNAME}}|${TEST_MYSQL_USERNAME}|g' \
  221. -e 's|{{TEST_MYSQL_PASSWORD}}|${TEST_MYSQL_PASSWORD}|g' \
  222. integrations/mysql.ini.tmpl > integrations/mysql.ini
  223. .PHONY: test-mysql
  224. test-mysql: integrations.mysql.test generate-ini-mysql
  225. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql.ini ./integrations.mysql.test
  226. .PHONY: test-mysql\#%
  227. test-mysql\#%: integrations.mysql.test generate-ini-mysql
  228. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql.ini ./integrations.mysql.test -test.run $*
  229. .PHONY: test-mysql-migration
  230. test-mysql-migration: migrations.mysql.test generate-ini-mysql
  231. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql.ini ./migrations.mysql.test
  232. generate-ini-mysql8:
  233. sed -e 's|{{TEST_MYSQL8_HOST}}|${TEST_MYSQL8_HOST}|g' \
  234. -e 's|{{TEST_MYSQL8_DBNAME}}|${TEST_MYSQL8_DBNAME}|g' \
  235. -e 's|{{TEST_MYSQL8_USERNAME}}|${TEST_MYSQL8_USERNAME}|g' \
  236. -e 's|{{TEST_MYSQL8_PASSWORD}}|${TEST_MYSQL8_PASSWORD}|g' \
  237. integrations/mysql8.ini.tmpl > integrations/mysql8.ini
  238. .PHONY: test-mysql8
  239. test-mysql8: integrations.mysql8.test generate-ini-mysql8
  240. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql8.ini ./integrations.mysql8.test
  241. .PHONY: test-mysql8\#%
  242. test-mysql8\#%: integrations.mysql8.test generate-ini-mysql8
  243. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql8.ini ./integrations.mysql8.test -test.run $*
  244. .PHONY: test-mysql8-migration
  245. test-mysql8-migration: migrations.mysql8.test generate-ini-mysql8
  246. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql8.ini ./migrations.mysql8.test
  247. generate-ini-pgsql:
  248. sed -e 's|{{TEST_PGSQL_HOST}}|${TEST_PGSQL_HOST}|g' \
  249. -e 's|{{TEST_PGSQL_DBNAME}}|${TEST_PGSQL_DBNAME}|g' \
  250. -e 's|{{TEST_PGSQL_USERNAME}}|${TEST_PGSQL_USERNAME}|g' \
  251. -e 's|{{TEST_PGSQL_PASSWORD}}|${TEST_PGSQL_PASSWORD}|g' \
  252. integrations/pgsql.ini.tmpl > integrations/pgsql.ini
  253. .PHONY: test-pgsql
  254. test-pgsql: integrations.pgsql.test generate-ini-pgsql
  255. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/pgsql.ini ./integrations.pgsql.test
  256. .PHONY: test-pgsql\#%
  257. test-pgsql\#%: integrations.pgsql.test generate-ini-pgsql
  258. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/pgsql.ini ./integrations.pgsql.test -test.run $*
  259. .PHONY: test-pgsql-migration
  260. test-pgsql-migration: migrations.pgsql.test generate-ini-pgsql
  261. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/pgsql.ini ./migrations.pgsql.test
  262. generate-ini-mssql:
  263. sed -e 's|{{TEST_MSSQL_HOST}}|${TEST_MSSQL_HOST}|g' \
  264. -e 's|{{TEST_MSSQL_DBNAME}}|${TEST_MSSQL_DBNAME}|g' \
  265. -e 's|{{TEST_MSSQL_USERNAME}}|${TEST_MSSQL_USERNAME}|g' \
  266. -e 's|{{TEST_MSSQL_PASSWORD}}|${TEST_MSSQL_PASSWORD}|g' \
  267. integrations/mssql.ini.tmpl > integrations/mssql.ini
  268. .PHONY: test-mssql
  269. test-mssql: integrations.mssql.test generate-ini-mssql
  270. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mssql.ini ./integrations.mssql.test
  271. .PHONY: test-mssql\#%
  272. test-mssql\#%: integrations.mssql.test generate-ini-mssql
  273. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mssql.ini ./integrations.mssql.test -test.run $*
  274. .PHONY: test-mssql-migration
  275. test-mssql-migration: migrations.mssql.test generate-ini-mssql
  276. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mssql.ini ./migrations.mssql.test
  277. .PHONY: bench-sqlite
  278. bench-sqlite: integrations.sqlite.test
  279. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/sqlite.ini ./integrations.sqlite.test -test.cpuprofile=cpu.out -test.run DontRunTests -test.bench .
  280. .PHONY: bench-mysql
  281. bench-mysql: integrations.mysql.test generate-ini-mysql
  282. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql.ini ./integrations.mysql.test -test.cpuprofile=cpu.out -test.run DontRunTests -test.bench .
  283. .PHONY: bench-mssql
  284. bench-mssql: integrations.mssql.test generate-ini-mssql
  285. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mssql.ini ./integrations.mssql.test -test.cpuprofile=cpu.out -test.run DontRunTests -test.bench .
  286. .PHONY: bench-pgsql
  287. bench-pgsql: integrations.pgsql.test generate-ini-pgsql
  288. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/pgsql.ini ./integrations.pgsql.test -test.cpuprofile=cpu.out -test.run DontRunTests -test.bench .
  289. .PHONY: integration-test-coverage
  290. integration-test-coverage: integrations.cover.test generate-ini-mysql
  291. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql.ini ./integrations.cover.test -test.coverprofile=integration.coverage.out
  292. integrations.mysql.test: $(GO_SOURCES)
  293. GO111MODULE=on $(GO) test -mod=vendor -c code.gitea.io/gitea/integrations -o integrations.mysql.test
  294. integrations.mysql8.test: $(GO_SOURCES)
  295. GO111MODULE=on $(GO) test -mod=vendor -c code.gitea.io/gitea/integrations -o integrations.mysql8.test
  296. integrations.pgsql.test: $(GO_SOURCES)
  297. GO111MODULE=on $(GO) test -mod=vendor -c code.gitea.io/gitea/integrations -o integrations.pgsql.test
  298. integrations.mssql.test: $(GO_SOURCES)
  299. GO111MODULE=on $(GO) test -mod=vendor -c code.gitea.io/gitea/integrations -o integrations.mssql.test
  300. integrations.sqlite.test: $(GO_SOURCES)
  301. GO111MODULE=on $(GO) test -mod=vendor -c code.gitea.io/gitea/integrations -o integrations.sqlite.test -tags 'sqlite sqlite_unlock_notify'
  302. integrations.cover.test: $(GO_SOURCES)
  303. GO111MODULE=on $(GO) test -mod=vendor -c code.gitea.io/gitea/integrations -coverpkg $(shell echo $(PACKAGES) | tr ' ' ',') -o integrations.cover.test
  304. .PHONY: migrations.mysql.test
  305. migrations.mysql.test: $(GO_SOURCES)
  306. $(GO) test -c code.gitea.io/gitea/integrations/migration-test -o migrations.mysql.test
  307. .PHONY: migrations.mysql8.test
  308. migrations.mysql8.test: $(GO_SOURCES)
  309. $(GO) test -c code.gitea.io/gitea/integrations/migration-test -o migrations.mysql8.test
  310. .PHONY: migrations.pgsql.test
  311. migrations.pgsql.test: $(GO_SOURCES)
  312. $(GO) test -c code.gitea.io/gitea/integrations/migration-test -o migrations.pgsql.test
  313. .PHONY: migrations.mssql.test
  314. migrations.mssql.test: $(GO_SOURCES)
  315. $(GO) test -c code.gitea.io/gitea/integrations/migration-test -o migrations.mssql.test
  316. .PHONY: migrations.sqlite.test
  317. migrations.sqlite.test: $(GO_SOURCES)
  318. $(GO) test -c code.gitea.io/gitea/integrations/migration-test -o migrations.sqlite.test -tags 'sqlite sqlite_unlock_notify'
  319. .PHONY: check
  320. check: test
  321. .PHONY: install
  322. install: $(wildcard *.go)
  323. $(GO) install -v -tags '$(TAGS)' -ldflags '-s -w $(LDFLAGS)'
  324. .PHONY: build
  325. build: go-check generate $(EXECUTABLE)
  326. $(EXECUTABLE): $(GO_SOURCES)
  327. GO111MODULE=on $(GO) build -mod=vendor $(GOFLAGS) $(EXTRA_GOFLAGS) -tags '$(TAGS)' -ldflags '-s -w $(LDFLAGS)' -o $@
  328. .PHONY: release
  329. release: generate release-dirs release-windows release-linux release-darwin release-copy release-compress release-check
  330. .PHONY: release-dirs
  331. release-dirs:
  332. mkdir -p $(DIST)/binaries $(DIST)/release
  333. .PHONY: release-windows
  334. release-windows:
  335. @hash xgo > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  336. $(GO) get -u src.techknowlogick.com/xgo; \
  337. fi
  338. xgo -dest $(DIST)/binaries -tags 'netgo osusergo $(TAGS)' -ldflags '-linkmode external -extldflags "-static" $(LDFLAGS)' -targets 'windows/*' -out gitea-$(VERSION) .
  339. ifeq ($(CI),drone)
  340. cp /build/* $(DIST)/binaries
  341. endif
  342. .PHONY: release-linux
  343. release-linux:
  344. @hash xgo > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  345. $(GO) get -u src.techknowlogick.com/xgo; \
  346. fi
  347. xgo -dest $(DIST)/binaries -tags 'netgo osusergo $(TAGS)' -ldflags '-linkmode external -extldflags "-static" $(LDFLAGS)' -targets 'linux/amd64,linux/386,linux/arm-5,linux/arm-6,linux/arm64,linux/mips64le,linux/mips,linux/mipsle' -out gitea-$(VERSION) .
  348. ifeq ($(CI),drone)
  349. cp /build/* $(DIST)/binaries
  350. endif
  351. .PHONY: release-darwin
  352. release-darwin:
  353. @hash xgo > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  354. $(GO) get -u src.techknowlogick.com/xgo; \
  355. fi
  356. xgo -dest $(DIST)/binaries -tags 'netgo osusergo $(TAGS)' -ldflags '$(LDFLAGS)' -targets 'darwin/*' -out gitea-$(VERSION) .
  357. ifeq ($(CI),drone)
  358. cp /build/* $(DIST)/binaries
  359. endif
  360. .PHONY: release-copy
  361. release-copy:
  362. cd $(DIST); for file in `find /build -type f -name "*"`; do cp $${file} ./release/; done;
  363. .PHONY: release-check
  364. release-check:
  365. cd $(DIST)/release/; for file in `find . -type f -name "*"`; do echo "checksumming $${file}" && $(SHASUM) `echo $${file} | sed 's/^..//'` > $${file}.sha256; done;
  366. .PHONY: release-compress
  367. release-compress:
  368. @hash gxz > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  369. $(GO) get -u github.com/ulikunitz/xz/cmd/gxz; \
  370. fi
  371. cd $(DIST)/release/; for file in `find . -type f -name "*"`; do echo "compressing $${file}" && gxz -k -9 $${file}; done;
  372. node_modules: package-lock.json
  373. npm install --no-save
  374. .PHONY: npm-update
  375. npm-update: node-check node_modules
  376. npx updates -cu
  377. rm -rf node_modules package-lock.json
  378. npm install --package-lock
  379. .PHONY: js
  380. js: node-check $(JS_DEST)
  381. $(JS_DEST): node_modules $(JS_SOURCES)
  382. npx eslint web_src/js webpack.config.js
  383. npx webpack
  384. .PHONY: css
  385. css: node-check $(CSS_DEST)
  386. $(CSS_DEST): node_modules $(CSS_SOURCES)
  387. npx stylelint web_src/less
  388. npx lessc web_src/less/index.less public/css/index.css
  389. $(foreach file, $(filter-out web_src/less/themes/_base.less, $(wildcard web_src/less/themes/*)),npx lessc web_src/less/themes/$(notdir $(file)) > public/css/theme-$(notdir $(call strip-suffix,$(file))).css;)
  390. npx postcss --use autoprefixer --use cssnano --no-map --replace public/css/*
  391. .PHONY: javascripts
  392. javascripts:
  393. echo "'make javascripts' is deprecated, please use 'make js'"
  394. $(MAKE) js
  395. .PHONY: stylesheets-check
  396. stylesheets-check:
  397. echo "'make stylesheets-check' is deprecated, please use 'make css'"
  398. $(MAKE) css
  399. .PHONY: generate-stylesheets
  400. generate-stylesheets:
  401. echo "'make generate-stylesheets' is deprecated, please use 'make css'"
  402. $(MAKE) css
  403. .PHONY: swagger-ui
  404. swagger-ui:
  405. rm -Rf public/vendor/assets/swagger-ui
  406. git clone --depth=10 -b v3.13.4 --single-branch https://github.com/swagger-api/swagger-ui.git $(TMPDIR)/swagger-ui
  407. mv $(TMPDIR)/swagger-ui/dist public/vendor/assets/swagger-ui
  408. rm -Rf $(TMPDIR)/swagger-ui
  409. $(SED_INPLACE) "s;http://petstore.swagger.io/v2/swagger.json;../../../swagger.v1.json;g" public/vendor/assets/swagger-ui/index.html
  410. .PHONY: update-translations
  411. update-translations:
  412. mkdir -p ./translations
  413. cd ./translations && curl -L https://crowdin.com/download/project/gitea.zip > gitea.zip && unzip gitea.zip
  414. rm ./translations/gitea.zip
  415. $(SED_INPLACE) -e 's/="/=/g' -e 's/"$$//g' ./translations/*.ini
  416. $(SED_INPLACE) -e 's/\\"/"/g' ./translations/*.ini
  417. mv ./translations/*.ini ./options/locale/
  418. rmdir ./translations
  419. .PHONY: generate-images
  420. generate-images:
  421. mkdir -p $(TMPDIR)/images
  422. inkscape -f $(PWD)/assets/logo.svg -w 880 -h 880 -e $(PWD)/public/img/gitea-lg.png
  423. inkscape -f $(PWD)/assets/logo.svg -w 512 -h 512 -e $(PWD)/public/img/gitea-512.png
  424. inkscape -f $(PWD)/assets/logo.svg -w 192 -h 192 -e $(PWD)/public/img/gitea-192.png
  425. inkscape -f $(PWD)/assets/logo.svg -w 120 -h 120 -jC -i layer1 -e $(TMPDIR)/images/sm-1.png
  426. inkscape -f $(PWD)/assets/logo.svg -w 120 -h 120 -jC -i layer2 -e $(TMPDIR)/images/sm-2.png
  427. composite -compose atop $(TMPDIR)/images/sm-2.png $(TMPDIR)/images/sm-1.png $(PWD)/public/img/gitea-sm.png
  428. inkscape -f $(PWD)/assets/logo.svg -w 200 -h 200 -e $(PWD)/public/img/avatar_default.png
  429. inkscape -f $(PWD)/assets/logo.svg -w 180 -h 180 -e $(PWD)/public/img/favicon.png
  430. inkscape -f $(PWD)/assets/logo.svg -w 128 -h 128 -e $(TMPDIR)/images/128-raw.png
  431. inkscape -f $(PWD)/assets/logo.svg -w 64 -h 64 -e $(TMPDIR)/images/64-raw.png
  432. inkscape -f $(PWD)/assets/logo.svg -w 32 -h 32 -jC -i layer1 -e $(TMPDIR)/images/32-1.png
  433. inkscape -f $(PWD)/assets/logo.svg -w 32 -h 32 -jC -i layer2 -e $(TMPDIR)/images/32-2.png
  434. composite -compose atop $(TMPDIR)/images/32-2.png $(TMPDIR)/images/32-1.png $(TMPDIR)/images/32-raw.png
  435. inkscape -f $(PWD)/assets/logo.svg -w 16 -h 16 -jC -i layer1 -e $(TMPDIR)/images/16-raw.png
  436. zopflipng -m -y $(TMPDIR)/images/128-raw.png $(TMPDIR)/images/128.png
  437. zopflipng -m -y $(TMPDIR)/images/64-raw.png $(TMPDIR)/images/64.png
  438. zopflipng -m -y $(TMPDIR)/images/32-raw.png $(TMPDIR)/images/32.png
  439. zopflipng -m -y $(TMPDIR)/images/16-raw.png $(TMPDIR)/images/16.png
  440. rm -f $(TMPDIR)/images/*-*.png
  441. convert $(TMPDIR)/images/16.png $(TMPDIR)/images/32.png \
  442. $(TMPDIR)/images/64.png $(TMPDIR)/images/128.png \
  443. $(PWD)/public/img/favicon.ico
  444. rm -rf $(TMPDIR)/images
  445. $(foreach file, $(shell find public/img -type f -name '*.png'),zopflipng -m -y $(file) $(file);)
  446. .PHONY: pr
  447. pr:
  448. $(GO) run contrib/pr/checkout.go $(PR)
  449. .PHONY: golangci-lint
  450. golangci-lint:
  451. @hash golangci-lint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  452. export BINARY="golangci-lint"; \
  453. curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(GOPATH)/bin v1.20.0; \
  454. fi
  455. golangci-lint run --timeout 5m