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.

539 lines
20 KiB

9 years ago
9 years ago
Sign merges, CRUD, Wiki and Repository initialisation with gpg key (#7631) This PR fixes #7598 by providing a configurable way of signing commits across the Gitea instance. Per repository configurability and import/generation of trusted secure keys is not provided by this PR - from a security PoV that's probably impossible to do properly. Similarly web-signing, that is asking the user to sign something, is not implemented - this could be done at a later stage however. ## Features - [x] If commit.gpgsign is set in .gitconfig sign commits and files created through repofiles. (merges should already have been signed.) - [x] Verify commits signed with the default gpg as valid - [x] Signer, Committer and Author can all be different - [x] Allow signer to be arbitrarily different - We still require the key to have an activated email on Gitea. A more complete implementation would be to use a keyserver and mark external-or-unactivated with an "unknown" trust level icon. - [x] Add a signing-key.gpg endpoint to get the default gpg pub key if available - Rather than add a fake web-flow user I've added this as an endpoint on /api/v1/signing-key.gpg - [x] Try to match the default key with a user on gitea - this is done at verification time - [x] Make things configurable? - app.ini configuration done - [x] when checking commits are signed need to check if they're actually verifiable too - [x] Add documentation I have decided that adjusting the docker to create a default gpg key is not the correct thing to do and therefore have not implemented this.
5 years ago
9 years ago
9 years ago
  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: revive
  153. revive:
  154. @hash revive > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  155. $(GO) get -u github.com/mgechev/revive; \
  156. fi
  157. revive -config .revive.toml -exclude=./vendor/... ./... || exit 1
  158. .PHONY: misspell-check
  159. misspell-check:
  160. @hash misspell > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  161. $(GO) get -u github.com/client9/misspell/cmd/misspell; \
  162. fi
  163. misspell -error -i unknwon,destory $(GOFILES)
  164. .PHONY: misspell
  165. misspell:
  166. @hash misspell > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  167. $(GO) get -u github.com/client9/misspell/cmd/misspell; \
  168. fi
  169. misspell -w -i unknwon $(GOFILES)
  170. .PHONY: fmt-check
  171. fmt-check:
  172. # get all go files and run go fmt on them
  173. @diff=$$($(GOFMT) -d $(GOFILES)); \
  174. if [ -n "$$diff" ]; then \
  175. echo "Please run 'make fmt' and commit the result:"; \
  176. echo "$${diff}"; \
  177. exit 1; \
  178. fi;
  179. .PHONY: test
  180. test:
  181. GO111MODULE=on $(GO) test -mod=vendor -tags='sqlite sqlite_unlock_notify' $(PACKAGES)
  182. .PHONY: test\#%
  183. test\#%:
  184. GO111MODULE=on $(GO) test -mod=vendor -tags='sqlite sqlite_unlock_notify' -run $* $(PACKAGES)
  185. .PHONY: coverage
  186. coverage:
  187. @hash gocovmerge > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  188. $(GO) get -u github.com/wadey/gocovmerge; \
  189. fi
  190. gocovmerge integration.coverage.out $(shell find . -type f -name "coverage.out") > coverage.all;\
  191. .PHONY: unit-test-coverage
  192. unit-test-coverage:
  193. $(GO) test -tags='sqlite sqlite_unlock_notify' -cover -coverprofile coverage.out $(PACKAGES) && echo "\n==>\033[32m Ok\033[m\n" || exit 1
  194. .PHONY: vendor
  195. vendor:
  196. GO111MODULE=on $(GO) mod tidy && GO111MODULE=on $(GO) mod vendor
  197. .PHONY: test-vendor
  198. test-vendor: vendor
  199. @diff=$$(git diff vendor/); \
  200. if [ -n "$$diff" ]; then \
  201. echo "Please run 'make vendor' and commit the result:"; \
  202. echo "$${diff}"; \
  203. exit 1; \
  204. fi;
  205. .PHONY: test-sqlite
  206. test-sqlite: integrations.sqlite.test
  207. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/sqlite.ini ./integrations.sqlite.test
  208. .PHONY: test-sqlite\#%
  209. test-sqlite\#%: integrations.sqlite.test
  210. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/sqlite.ini ./integrations.sqlite.test -test.run $*
  211. .PHONY: test-sqlite-migration
  212. test-sqlite-migration: migrations.sqlite.test
  213. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/sqlite.ini ./migrations.sqlite.test
  214. generate-ini-mysql:
  215. sed -e 's|{{TEST_MYSQL_HOST}}|${TEST_MYSQL_HOST}|g' \
  216. -e 's|{{TEST_MYSQL_DBNAME}}|${TEST_MYSQL_DBNAME}|g' \
  217. -e 's|{{TEST_MYSQL_USERNAME}}|${TEST_MYSQL_USERNAME}|g' \
  218. -e 's|{{TEST_MYSQL_PASSWORD}}|${TEST_MYSQL_PASSWORD}|g' \
  219. integrations/mysql.ini.tmpl > integrations/mysql.ini
  220. .PHONY: test-mysql
  221. test-mysql: integrations.mysql.test generate-ini-mysql
  222. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql.ini ./integrations.mysql.test
  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 -test.run $*
  226. .PHONY: test-mysql-migration
  227. test-mysql-migration: migrations.mysql.test generate-ini-mysql
  228. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql.ini ./migrations.mysql.test
  229. generate-ini-mysql8:
  230. sed -e 's|{{TEST_MYSQL8_HOST}}|${TEST_MYSQL8_HOST}|g' \
  231. -e 's|{{TEST_MYSQL8_DBNAME}}|${TEST_MYSQL8_DBNAME}|g' \
  232. -e 's|{{TEST_MYSQL8_USERNAME}}|${TEST_MYSQL8_USERNAME}|g' \
  233. -e 's|{{TEST_MYSQL8_PASSWORD}}|${TEST_MYSQL8_PASSWORD}|g' \
  234. integrations/mysql8.ini.tmpl > integrations/mysql8.ini
  235. .PHONY: test-mysql8
  236. test-mysql8: integrations.mysql8.test generate-ini-mysql8
  237. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql8.ini ./integrations.mysql8.test
  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 -test.run $*
  241. .PHONY: test-mysql8-migration
  242. test-mysql8-migration: migrations.mysql8.test generate-ini-mysql8
  243. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql8.ini ./migrations.mysql8.test
  244. generate-ini-pgsql:
  245. sed -e 's|{{TEST_PGSQL_HOST}}|${TEST_PGSQL_HOST}|g' \
  246. -e 's|{{TEST_PGSQL_DBNAME}}|${TEST_PGSQL_DBNAME}|g' \
  247. -e 's|{{TEST_PGSQL_USERNAME}}|${TEST_PGSQL_USERNAME}|g' \
  248. -e 's|{{TEST_PGSQL_PASSWORD}}|${TEST_PGSQL_PASSWORD}|g' \
  249. integrations/pgsql.ini.tmpl > integrations/pgsql.ini
  250. .PHONY: test-pgsql
  251. test-pgsql: integrations.pgsql.test generate-ini-pgsql
  252. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/pgsql.ini ./integrations.pgsql.test
  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 -test.run $*
  256. .PHONY: test-pgsql-migration
  257. test-pgsql-migration: migrations.pgsql.test generate-ini-pgsql
  258. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/pgsql.ini ./migrations.pgsql.test
  259. generate-ini-mssql:
  260. sed -e 's|{{TEST_MSSQL_HOST}}|${TEST_MSSQL_HOST}|g' \
  261. -e 's|{{TEST_MSSQL_DBNAME}}|${TEST_MSSQL_DBNAME}|g' \
  262. -e 's|{{TEST_MSSQL_USERNAME}}|${TEST_MSSQL_USERNAME}|g' \
  263. -e 's|{{TEST_MSSQL_PASSWORD}}|${TEST_MSSQL_PASSWORD}|g' \
  264. integrations/mssql.ini.tmpl > integrations/mssql.ini
  265. .PHONY: test-mssql
  266. test-mssql: integrations.mssql.test generate-ini-mssql
  267. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mssql.ini ./integrations.mssql.test
  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 -test.run $*
  271. .PHONY: test-mssql-migration
  272. test-mssql-migration: migrations.mssql.test generate-ini-mssql
  273. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mssql.ini ./migrations.mssql.test
  274. .PHONY: bench-sqlite
  275. bench-sqlite: integrations.sqlite.test
  276. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/sqlite.ini ./integrations.sqlite.test -test.cpuprofile=cpu.out -test.run DontRunTests -test.bench .
  277. .PHONY: bench-mysql
  278. bench-mysql: integrations.mysql.test generate-ini-mysql
  279. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql.ini ./integrations.mysql.test -test.cpuprofile=cpu.out -test.run DontRunTests -test.bench .
  280. .PHONY: bench-mssql
  281. bench-mssql: integrations.mssql.test generate-ini-mssql
  282. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mssql.ini ./integrations.mssql.test -test.cpuprofile=cpu.out -test.run DontRunTests -test.bench .
  283. .PHONY: bench-pgsql
  284. bench-pgsql: integrations.pgsql.test generate-ini-pgsql
  285. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/pgsql.ini ./integrations.pgsql.test -test.cpuprofile=cpu.out -test.run DontRunTests -test.bench .
  286. .PHONY: integration-test-coverage
  287. integration-test-coverage: integrations.cover.test generate-ini-mysql
  288. GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql.ini ./integrations.cover.test -test.coverprofile=integration.coverage.out
  289. integrations.mysql.test: $(GO_SOURCES)
  290. GO111MODULE=on $(GO) test -mod=vendor -c code.gitea.io/gitea/integrations -o integrations.mysql.test
  291. integrations.mysql8.test: $(GO_SOURCES)
  292. GO111MODULE=on $(GO) test -mod=vendor -c code.gitea.io/gitea/integrations -o integrations.mysql8.test
  293. integrations.pgsql.test: $(GO_SOURCES)
  294. GO111MODULE=on $(GO) test -mod=vendor -c code.gitea.io/gitea/integrations -o integrations.pgsql.test
  295. integrations.mssql.test: $(GO_SOURCES)
  296. GO111MODULE=on $(GO) test -mod=vendor -c code.gitea.io/gitea/integrations -o integrations.mssql.test
  297. integrations.sqlite.test: $(GO_SOURCES)
  298. GO111MODULE=on $(GO) test -mod=vendor -c code.gitea.io/gitea/integrations -o integrations.sqlite.test -tags 'sqlite sqlite_unlock_notify'
  299. integrations.cover.test: $(GO_SOURCES)
  300. GO111MODULE=on $(GO) test -mod=vendor -c code.gitea.io/gitea/integrations -coverpkg $(shell echo $(PACKAGES) | tr ' ' ',') -o integrations.cover.test
  301. .PHONY: migrations.mysql.test
  302. migrations.mysql.test: $(GO_SOURCES)
  303. $(GO) test -c code.gitea.io/gitea/integrations/migration-test -o migrations.mysql.test
  304. .PHONY: migrations.mysql8.test
  305. migrations.mysql8.test: $(GO_SOURCES)
  306. $(GO) test -c code.gitea.io/gitea/integrations/migration-test -o migrations.mysql8.test
  307. .PHONY: migrations.pgsql.test
  308. migrations.pgsql.test: $(GO_SOURCES)
  309. $(GO) test -c code.gitea.io/gitea/integrations/migration-test -o migrations.pgsql.test
  310. .PHONY: migrations.mssql.test
  311. migrations.mssql.test: $(GO_SOURCES)
  312. $(GO) test -c code.gitea.io/gitea/integrations/migration-test -o migrations.mssql.test
  313. .PHONY: migrations.sqlite.test
  314. migrations.sqlite.test: $(GO_SOURCES)
  315. $(GO) test -c code.gitea.io/gitea/integrations/migration-test -o migrations.sqlite.test -tags 'sqlite sqlite_unlock_notify'
  316. .PHONY: check
  317. check: test
  318. .PHONY: install
  319. install: $(wildcard *.go)
  320. $(GO) install -v -tags '$(TAGS)' -ldflags '-s -w $(LDFLAGS)'
  321. .PHONY: build
  322. build: go-check generate $(EXECUTABLE)
  323. $(EXECUTABLE): $(GO_SOURCES)
  324. GO111MODULE=on $(GO) build -mod=vendor $(GOFLAGS) $(EXTRA_GOFLAGS) -tags '$(TAGS)' -ldflags '-s -w $(LDFLAGS)' -o $@
  325. .PHONY: release
  326. release: generate release-dirs release-windows release-linux release-darwin release-copy release-compress release-check
  327. .PHONY: release-dirs
  328. release-dirs:
  329. mkdir -p $(DIST)/binaries $(DIST)/release
  330. .PHONY: release-windows
  331. release-windows:
  332. @hash xgo > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  333. $(GO) get -u src.techknowlogick.com/xgo; \
  334. fi
  335. xgo -dest $(DIST)/binaries -tags 'netgo osusergo $(TAGS)' -ldflags '-linkmode external -extldflags "-static" $(LDFLAGS)' -targets 'windows/*' -out gitea-$(VERSION) .
  336. ifeq ($(CI),drone)
  337. cp /build/* $(DIST)/binaries
  338. endif
  339. .PHONY: release-linux
  340. release-linux:
  341. @hash xgo > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  342. $(GO) get -u src.techknowlogick.com/xgo; \
  343. fi
  344. 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) .
  345. ifeq ($(CI),drone)
  346. cp /build/* $(DIST)/binaries
  347. endif
  348. .PHONY: release-darwin
  349. release-darwin:
  350. @hash xgo > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  351. $(GO) get -u src.techknowlogick.com/xgo; \
  352. fi
  353. xgo -dest $(DIST)/binaries -tags 'netgo osusergo $(TAGS)' -ldflags '$(LDFLAGS)' -targets 'darwin/*' -out gitea-$(VERSION) .
  354. ifeq ($(CI),drone)
  355. cp /build/* $(DIST)/binaries
  356. endif
  357. .PHONY: release-copy
  358. release-copy:
  359. cd $(DIST); for file in `find /build -type f -name "*"`; do cp $${file} ./release/; done;
  360. .PHONY: release-check
  361. release-check:
  362. cd $(DIST)/release/; for file in `find . -type f -name "*"`; do echo "checksumming $${file}" && $(SHASUM) `echo $${file} | sed 's/^..//'` > $${file}.sha256; done;
  363. .PHONY: release-compress
  364. release-compress:
  365. @hash gxz > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  366. $(GO) get -u github.com/ulikunitz/xz/cmd/gxz; \
  367. fi
  368. cd $(DIST)/release/; for file in `find . -type f -name "*"`; do echo "compressing $${file}" && gxz -k -9 $${file}; done;
  369. node_modules: package-lock.json
  370. npm install --no-save
  371. .PHONY: npm-update
  372. npm-update: node-check node_modules
  373. npx updates -cu
  374. rm -rf node_modules package-lock.json
  375. npm install --package-lock
  376. .PHONY: js
  377. js: node-check $(JS_DEST)
  378. $(JS_DEST): node_modules $(JS_SOURCES)
  379. npx eslint web_src/js webpack.config.js
  380. npx webpack
  381. .PHONY: css
  382. css: node-check $(CSS_DEST)
  383. $(CSS_DEST): node_modules $(CSS_SOURCES)
  384. npx stylelint web_src/less
  385. npx lessc web_src/less/index.less public/css/index.css
  386. $(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;)
  387. npx postcss --use autoprefixer --use cssnano --no-map --replace public/css/*
  388. .PHONY: swagger-ui
  389. swagger-ui:
  390. rm -Rf public/vendor/assets/swagger-ui
  391. git clone --depth=10 -b v3.13.4 --single-branch https://github.com/swagger-api/swagger-ui.git $(TMPDIR)/swagger-ui
  392. mv $(TMPDIR)/swagger-ui/dist public/vendor/assets/swagger-ui
  393. rm -Rf $(TMPDIR)/swagger-ui
  394. $(SED_INPLACE) "s;http://petstore.swagger.io/v2/swagger.json;../../../swagger.v1.json;g" public/vendor/assets/swagger-ui/index.html
  395. .PHONY: update-translations
  396. update-translations:
  397. mkdir -p ./translations
  398. cd ./translations && curl -L https://crowdin.com/download/project/gitea.zip > gitea.zip && unzip gitea.zip
  399. rm ./translations/gitea.zip
  400. $(SED_INPLACE) -e 's/="/=/g' -e 's/"$$//g' ./translations/*.ini
  401. $(SED_INPLACE) -e 's/\\"/"/g' ./translations/*.ini
  402. mv ./translations/*.ini ./options/locale/
  403. rmdir ./translations
  404. .PHONY: generate-images
  405. generate-images:
  406. mkdir -p $(TMPDIR)/images
  407. inkscape -f $(PWD)/assets/logo.svg -w 880 -h 880 -e $(PWD)/public/img/gitea-lg.png
  408. inkscape -f $(PWD)/assets/logo.svg -w 512 -h 512 -e $(PWD)/public/img/gitea-512.png
  409. inkscape -f $(PWD)/assets/logo.svg -w 192 -h 192 -e $(PWD)/public/img/gitea-192.png
  410. inkscape -f $(PWD)/assets/logo.svg -w 120 -h 120 -jC -i layer1 -e $(TMPDIR)/images/sm-1.png
  411. inkscape -f $(PWD)/assets/logo.svg -w 120 -h 120 -jC -i layer2 -e $(TMPDIR)/images/sm-2.png
  412. composite -compose atop $(TMPDIR)/images/sm-2.png $(TMPDIR)/images/sm-1.png $(PWD)/public/img/gitea-sm.png
  413. inkscape -f $(PWD)/assets/logo.svg -w 200 -h 200 -e $(PWD)/public/img/avatar_default.png
  414. inkscape -f $(PWD)/assets/logo.svg -w 180 -h 180 -e $(PWD)/public/img/favicon.png
  415. inkscape -f $(PWD)/assets/logo.svg -w 128 -h 128 -e $(TMPDIR)/images/128-raw.png
  416. inkscape -f $(PWD)/assets/logo.svg -w 64 -h 64 -e $(TMPDIR)/images/64-raw.png
  417. inkscape -f $(PWD)/assets/logo.svg -w 32 -h 32 -jC -i layer1 -e $(TMPDIR)/images/32-1.png
  418. inkscape -f $(PWD)/assets/logo.svg -w 32 -h 32 -jC -i layer2 -e $(TMPDIR)/images/32-2.png
  419. composite -compose atop $(TMPDIR)/images/32-2.png $(TMPDIR)/images/32-1.png $(TMPDIR)/images/32-raw.png
  420. inkscape -f $(PWD)/assets/logo.svg -w 16 -h 16 -jC -i layer1 -e $(TMPDIR)/images/16-raw.png
  421. zopflipng -m -y $(TMPDIR)/images/128-raw.png $(TMPDIR)/images/128.png
  422. zopflipng -m -y $(TMPDIR)/images/64-raw.png $(TMPDIR)/images/64.png
  423. zopflipng -m -y $(TMPDIR)/images/32-raw.png $(TMPDIR)/images/32.png
  424. zopflipng -m -y $(TMPDIR)/images/16-raw.png $(TMPDIR)/images/16.png
  425. rm -f $(TMPDIR)/images/*-*.png
  426. convert $(TMPDIR)/images/16.png $(TMPDIR)/images/32.png \
  427. $(TMPDIR)/images/64.png $(TMPDIR)/images/128.png \
  428. $(PWD)/public/img/favicon.ico
  429. rm -rf $(TMPDIR)/images
  430. $(foreach file, $(shell find public/img -type f -name '*.png'),zopflipng -m -y $(file) $(file);)
  431. .PHONY: pr
  432. pr:
  433. $(GO) run contrib/pr/checkout.go $(PR)
  434. .PHONY: golangci-lint
  435. golangci-lint:
  436. @hash golangci-lint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
  437. export BINARY="golangci-lint"; \
  438. curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(GOPATH)/bin v1.22.2; \
  439. fi
  440. golangci-lint run --timeout 5m