Show More
@@ -1,12 +1,49 b'' | |||||
|
1 | .DEFAULT_GOAL := help | |||
|
2 | ||||
|
3 | # Pretty print values cf. https://misc.flogisoft.com/bash/tip_colors_and_formatting | |||
|
4 | RESET := \033[0m # Reset all formatting | |||
|
5 | GREEN := \033[0;32m # Resets before setting 16b colour (32 -- green) | |||
|
6 | YELLOW := \033[0;33m | |||
|
7 | ORANGE := \033[0;38;5;208m # Reset then set 256b colour (208 -- orange) | |||
|
8 | PEACH := \033[0;38;5;216m | |||
|
9 | ||||
|
10 | ||||
|
11 | ## ---------------------------------------------------------------------------------- ## | |||
|
12 | ## ------------------------- Help usage builder ------------------------------------- ## | |||
|
13 | ## ---------------------------------------------------------------------------------- ## | |||
|
14 | # use '# >>> Build commands' to create section | |||
|
15 | # use '# target: target description' to create help for target | |||
|
16 | .PHONY: help | |||
|
17 | help: | |||
|
18 | @echo "Usage:" | |||
|
19 | @cat $(MAKEFILE_LIST) | grep -E '^# >>>|^# [A-Za-z0-9_.-]+:' | sed -E 's/^# //' | awk ' \ | |||
|
20 | BEGIN { \ | |||
|
21 | green="\033[32m"; \ | |||
|
22 | yellow="\033[33m"; \ | |||
|
23 | reset="\033[0m"; \ | |||
|
24 | section=""; \ | |||
|
25 | } \ | |||
|
26 | /^>>>/ { \ | |||
|
27 | section=substr($$0, 5); \ | |||
|
28 | printf "\n" green ">>> %s" reset "\n", section; \ | |||
|
29 | next; \ | |||
|
30 | } \ | |||
|
31 | /^([A-Za-z0-9_.-]+):/ { \ | |||
|
32 | target=$$1; \ | |||
|
33 | gsub(/:$$/, "", target); \ | |||
|
34 | description=substr($$0, index($$0, ":") + 2); \ | |||
|
35 | if (description == "") { description="-"; } \ | |||
|
36 | printf " - " yellow "%-35s" reset " %s\n", target, description; \ | |||
|
37 | } \ | |||
|
38 | ' | |||
|
39 | ||||
1 | # required for pushd to work.. |
|
40 | # required for pushd to work.. | |
2 | SHELL = /bin/bash |
|
41 | SHELL = /bin/bash | |
3 |
|
42 | |||
4 |
|
43 | # >>> Tests commands | ||
5 | # set by: PATH_TO_OUTDATED_PACKAGES=/some/path/outdated_packages.py |
|
|||
6 | OUTDATED_PACKAGES = ${PATH_TO_OUTDATED_PACKAGES} |
|
|||
7 |
|
44 | |||
8 | .PHONY: clean |
|
45 | .PHONY: clean | |
9 |
# |
|
46 | # clean: Cleanup compiled and cache py files | |
10 | clean: |
|
47 | clean: | |
11 | make test-clean |
|
48 | make test-clean | |
12 | find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';' |
|
49 | find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';' | |
@@ -14,14 +51,14 b' clean:' | |||||
14 |
|
51 | |||
15 |
|
52 | |||
16 | .PHONY: test |
|
53 | .PHONY: test | |
17 |
# |
|
54 | # test: run test-clean and tests | |
18 | test: |
|
55 | test: | |
19 | make test-clean |
|
56 | make test-clean | |
20 | make test-only |
|
57 | unset RC_SQLALCHEMY_DB1_URL && unset RC_DB_URL && make test-only | |
21 |
|
58 | |||
22 |
|
59 | |||
23 | .PHONY: test-clean |
|
60 | .PHONY: test-clean | |
24 |
# |
|
61 | # test-clean: run test-clean and tests | |
25 | test-clean: |
|
62 | test-clean: | |
26 | rm -rf coverage.xml htmlcov junit.xml pylint.log result |
|
63 | rm -rf coverage.xml htmlcov junit.xml pylint.log result | |
27 | find . -type d -name "__pycache__" -prune -exec rm -rf '{}' ';' |
|
64 | find . -type d -name "__pycache__" -prune -exec rm -rf '{}' ';' | |
@@ -29,34 +66,36 b' test-clean:' | |||||
29 |
|
66 | |||
30 |
|
67 | |||
31 | .PHONY: test-only |
|
68 | .PHONY: test-only | |
32 |
# |
|
69 | # test-only: Run tests only without cleanup | |
33 | test-only: |
|
70 | test-only: | |
34 | PYTHONHASHSEED=random \ |
|
71 | PYTHONHASHSEED=random \ | |
35 | py.test -x -vv -r xw -p no:sugar \ |
|
72 | py.test -x -vv -r xw -p no:sugar \ | |
36 | --cov-report=term-missing --cov-report=html \ |
|
73 | --cov-report=term-missing --cov-report=html \ | |
37 | --cov=rhodecode rhodecode |
|
74 | --cov=rhodecode rhodecode | |
38 |
|
75 | |||
|
76 | # >>> Docs commands | |||
39 |
|
77 | |||
40 | .PHONY: docs |
|
78 | .PHONY: docs | |
41 |
# |
|
79 | # docs: build docs | |
42 | docs: |
|
80 | docs: | |
43 | (cd docs; docker run --rm -v $(PWD):/project --workdir=/project/docs sphinx-doc-build-rc make clean html) |
|
81 | (cd docs; docker run --rm -v $(PWD):/project --workdir=/project/docs sphinx-doc-build-rc make clean html) | |
44 |
|
82 | |||
45 |
|
83 | |||
46 | .PHONY: docs-clean |
|
84 | .PHONY: docs-clean | |
47 |
# |
|
85 | # docs-clean: Cleanup docs | |
48 | docs-clean: |
|
86 | docs-clean: | |
49 | (cd docs; docker run --rm -v $(PWD):/project --workdir=/project/docs sphinx-doc-build-rc make clean) |
|
87 | (cd docs; docker run --rm -v $(PWD):/project --workdir=/project/docs sphinx-doc-build-rc make clean) | |
50 |
|
88 | |||
51 |
|
89 | |||
52 | .PHONY: docs-cleanup |
|
90 | .PHONY: docs-cleanup | |
53 |
# |
|
91 | # docs-cleanup: Cleanup docs | |
54 | docs-cleanup: |
|
92 | docs-cleanup: | |
55 | (cd docs; docker run --rm -v $(PWD):/project --workdir=/project/docs sphinx-doc-build-rc make cleanup) |
|
93 | (cd docs; docker run --rm -v $(PWD):/project --workdir=/project/docs sphinx-doc-build-rc make cleanup) | |
56 |
|
94 | |||
|
95 | # >>> Dev commands | |||
57 |
|
96 | |||
58 | .PHONY: web-build |
|
97 | .PHONY: web-build | |
59 |
# |
|
98 | # web-build: Build JS packages static/js | |
60 | web-build: |
|
99 | web-build: | |
61 | rm -rf node_modules |
|
100 | rm -rf node_modules | |
62 | docker run -it --rm -v $(PWD):/project --workdir=/project rhodecode/static-files-build:16 -c "npm install && /project/node_modules/.bin/grunt" |
|
101 | docker run -it --rm -v $(PWD):/project --workdir=/project rhodecode/static-files-build:16 -c "npm install && /project/node_modules/.bin/grunt" | |
@@ -64,25 +103,9 b' web-build:' | |||||
64 | ./rhodecode/tests/scripts/static-file-check.sh rhodecode/public/ |
|
103 | ./rhodecode/tests/scripts/static-file-check.sh rhodecode/public/ | |
65 | rm -rf node_modules |
|
104 | rm -rf node_modules | |
66 |
|
105 | |||
67 | .PHONY: ruff-check |
|
|||
68 | ## run a ruff analysis |
|
|||
69 | ruff-check: |
|
|||
70 | ruff check --ignore F401 --ignore I001 --ignore E402 --ignore E501 --ignore F841 --exclude rhodecode/lib/dbmigrate --exclude .eggs --exclude .dev . |
|
|||
71 |
|
||||
72 | .PHONY: pip-packages |
|
|||
73 | ## Show outdated packages |
|
|||
74 | pip-packages: |
|
|||
75 | python ${OUTDATED_PACKAGES} |
|
|||
76 |
|
||||
77 |
|
||||
78 | .PHONY: build |
|
|||
79 | ## Build sdist/egg |
|
|||
80 | build: |
|
|||
81 | python -m build |
|
|||
82 |
|
||||
83 |
|
106 | |||
84 | .PHONY: dev-sh |
|
107 | .PHONY: dev-sh | |
85 |
# |
|
108 | # dev-sh: make dev-sh | |
86 | dev-sh: |
|
109 | dev-sh: | |
87 | sudo echo "deb [trusted=yes] https://apt.fury.io/rsteube/ /" | sudo tee -a "/etc/apt/sources.list.d/fury.list" |
|
110 | sudo echo "deb [trusted=yes] https://apt.fury.io/rsteube/ /" | sudo tee -a "/etc/apt/sources.list.d/fury.list" | |
88 | sudo apt-get update |
|
111 | sudo apt-get update | |
@@ -95,14 +118,14 b' dev-sh:' | |||||
95 |
|
118 | |||
96 |
|
119 | |||
97 | .PHONY: dev-cleanup |
|
120 | .PHONY: dev-cleanup | |
98 |
# |
|
121 | # dev-cleanup: Cleanup: pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y | |
99 | dev-cleanup: |
|
122 | dev-cleanup: | |
100 | pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y |
|
123 | pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y | |
101 | rm -rf /tmp/* |
|
124 | rm -rf /tmp/* | |
102 |
|
125 | |||
103 |
|
126 | |||
104 | .PHONY: dev-env |
|
127 | .PHONY: dev-env | |
105 |
# |
|
128 | # dev-env: make dev-env based on the requirements files and install develop of packages | |
106 | ## Cleanup: pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y |
|
129 | ## Cleanup: pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y | |
107 | dev-env: |
|
130 | dev-env: | |
108 | sudo -u root chown rhodecode:rhodecode /home/rhodecode/.cache/pip/ |
|
131 | sudo -u root chown rhodecode:rhodecode /home/rhodecode/.cache/pip/ | |
@@ -114,7 +137,7 b' dev-env:' | |||||
114 |
|
137 | |||
115 |
|
138 | |||
116 | .PHONY: sh |
|
139 | .PHONY: sh | |
117 |
# |
|
140 | # sh: shortcut for make dev-sh dev-env | |
118 | sh: |
|
141 | sh: | |
119 | make dev-env |
|
142 | make dev-env | |
120 | make dev-sh |
|
143 | make dev-sh | |
@@ -124,49 +147,12 b' sh:' | |||||
124 | workers?=1 |
|
147 | workers?=1 | |
125 |
|
148 | |||
126 | .PHONY: dev-srv |
|
149 | .PHONY: dev-srv | |
127 |
# |
|
150 | # dev-srv: run gunicorn web server with reloader, use workers=N to set multiworker mode, workers=N allows changes of workers | |
128 | dev-srv: |
|
151 | dev-srv: | |
129 | gunicorn --paste=.dev/dev.ini --bind=0.0.0.0:10020 --config=.dev/gunicorn_config.py --timeout=120 --reload --workers=$(workers) |
|
152 | gunicorn --paste=.dev/dev.ini --bind=0.0.0.0:10020 --config=.dev/gunicorn_config.py --timeout=120 --reload --workers=$(workers) | |
130 |
|
153 | |||
131 |
|
154 | .PHONY: ruff-check | ||
132 | # Default command on calling make |
|
155 | # ruff-check: run a ruff analysis | |
133 | .DEFAULT_GOAL := show-help |
|
156 | ruff-check: | |
|
157 | ruff check --ignore F401 --ignore I001 --ignore E402 --ignore E501 --ignore F841 --exclude rhodecode/lib/dbmigrate --exclude .eggs --exclude .dev . | |||
134 |
|
|
158 | ||
135 | .PHONY: show-help |
|
|||
136 | show-help: |
|
|||
137 | @echo "$$(tput bold)Available rules:$$(tput sgr0)" |
|
|||
138 | @echo |
|
|||
139 | @sed -n -e "/^## / { \ |
|
|||
140 | h; \ |
|
|||
141 | s/.*//; \ |
|
|||
142 | :doc" \ |
|
|||
143 | -e "H; \ |
|
|||
144 | n; \ |
|
|||
145 | s/^## //; \ |
|
|||
146 | t doc" \ |
|
|||
147 | -e "s/:.*//; \ |
|
|||
148 | G; \ |
|
|||
149 | s/\\n## /---/; \ |
|
|||
150 | s/\\n/ /g; \ |
|
|||
151 | p; \ |
|
|||
152 | }" ${MAKEFILE_LIST} \ |
|
|||
153 | | LC_ALL='C' sort --ignore-case \ |
|
|||
154 | | awk -F '---' \ |
|
|||
155 | -v ncol=$$(tput cols) \ |
|
|||
156 | -v indent=19 \ |
|
|||
157 | -v col_on="$$(tput setaf 6)" \ |
|
|||
158 | -v col_off="$$(tput sgr0)" \ |
|
|||
159 | '{ \ |
|
|||
160 | printf "%s%*s%s ", col_on, -indent, $$1, col_off; \ |
|
|||
161 | n = split($$2, words, " "); \ |
|
|||
162 | line_length = ncol - indent; \ |
|
|||
163 | for (i = 1; i <= n; i++) { \ |
|
|||
164 | line_length -= length(words[i]) + 1; \ |
|
|||
165 | if (line_length <= 0) { \ |
|
|||
166 | line_length = ncol - indent - length(words[i]) - 1; \ |
|
|||
167 | printf "\n%*s ", -indent, " "; \ |
|
|||
168 | } \ |
|
|||
169 | printf "%s ", words[i]; \ |
|
|||
170 | } \ |
|
|||
171 | printf "\n"; \ |
|
|||
172 | }' |
|
General Comments 0
You need to be logged in to leave comments.
Login now