##// END OF EJS Templates
makefile: synced makefiles
super-admin -
r1240:b25ab556 default
parent child Browse files
Show More
@@ -1,137 +1,144 b''
1 # required for pushd to work..
1 # required for pushd to work..
2 SHELL = /bin/bash
2 SHELL = /bin/bash
3
3
4
4
5 # set by: PATH_TO_OUTDATED_PACKAGES=/some/path/outdated_packages.py
5 # set by: PATH_TO_OUTDATED_PACKAGES=/some/path/outdated_packages.py
6 OUTDATED_PACKAGES = ${PATH_TO_OUTDATED_PACKAGES}
6 OUTDATED_PACKAGES = ${PATH_TO_OUTDATED_PACKAGES}
7
7
8 .PHONY: clean
8 .PHONY: clean
9 ## Cleanup compiled and cache py files
9 ## Cleanup compiled and cache py files
10 clean:
10 clean:
11 make test-clean
11 make test-clean
12 find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';'
12 find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';'
13 find . -type d -name "build" -prune -exec rm -rf '{}' ';'
13 find . -type d -name "build" -prune -exec rm -rf '{}' ';'
14
14
15
15
16 .PHONY: test
16 .PHONY: test
17 ## run test-clean and tests
17 ## run test-clean and tests
18 test:
18 test:
19 make test-clean
19 make test-clean
20 make test-only
20 make test-only
21
21
22
22
23 .PHONY: test-clean
23 .PHONY: test-clean
24 ## run test-clean and tests
24 ## run test-clean and tests
25 test-clean:
25 test-clean:
26 rm -rf coverage.xml htmlcov junit.xml pylint.log result
26 rm -rf coverage.xml htmlcov junit.xml pylint.log result
27 find . -type d -name "__pycache__" -prune -exec rm -rf '{}' ';'
27 find . -type d -name "__pycache__" -prune -exec rm -rf '{}' ';'
28 find . -type f \( -iname '.coverage.*' \) -exec rm '{}' ';'
28 find . -type f \( -iname '.coverage.*' \) -exec rm '{}' ';'
29
29
30
30
31 .PHONY: test-only
31 .PHONY: test-only
32 ## Run tests only without cleanup
32 ## Run tests only without cleanup
33 test-only:
33 test-only:
34 PYTHONHASHSEED=random \
34 PYTHONHASHSEED=random \
35 py.test -x -vv -r xw -p no:sugar \
35 py.test -x -vv -r xw -p no:sugar \
36 --cov-report=term-missing --cov-report=html \
36 --cov-report=term-missing --cov-report=html \
37 --cov=vcsserver vcsserver
37 --cov=vcsserver vcsserver
38
38
39
39
40 .PHONY: ruff-check
40 .PHONY: ruff-check
41 ## run a ruff analysis
41 ## run a ruff analysis
42 ruff-check:
42 ruff-check:
43 ruff check --ignore F401 --ignore I001 --ignore E402 --ignore E501 --ignore F841 --exclude rhodecode/lib/dbmigrate --exclude .eggs --exclude .dev .
43 ruff check --ignore F401 --ignore I001 --ignore E402 --ignore E501 --ignore F841 --exclude rhodecode/lib/dbmigrate --exclude .eggs --exclude .dev .
44
44
45 .PHONY: pip-packages
45 .PHONY: pip-packages
46 ## Show outdated packages
46 ## Show outdated packages
47 pip-packages:
47 pip-packages:
48 python ${OUTDATED_PACKAGES}
48 python ${OUTDATED_PACKAGES}
49
49
50
50
51 .PHONY: build
51 .PHONY: build
52 ## Build sdist/egg
52 ## Build sdist/egg
53 build:
53 build:
54 python -m build
54 python -m build
55
55
56
56
57 .PHONY: dev-sh
57 .PHONY: dev-sh
58 ## make dev-sh
58 ## make dev-sh
59 dev-sh:
59 dev-sh:
60 sudo echo "deb [trusted=yes] https://apt.fury.io/rsteube/ /" | sudo tee -a "/etc/apt/sources.list.d/fury.list"
60 sudo echo "deb [trusted=yes] https://apt.fury.io/rsteube/ /" | sudo tee -a "/etc/apt/sources.list.d/fury.list"
61 sudo apt-get update
61 sudo apt-get update
62 sudo apt-get install -y zsh carapace-bin
62 sudo apt-get install -y zsh carapace-bin
63 rm -rf /home/rhodecode/.oh-my-zsh
63 rm -rf /home/rhodecode/.oh-my-zsh
64 curl https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
64 curl https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
65 @echo "source <(carapace _carapace)" > /home/rhodecode/.zsrc
65 @echo "source <(carapace _carapace)" > /home/rhodecode/.zsrc
66 @echo "${RC_DEV_CMD_HELP}"
66 @echo "${RC_DEV_CMD_HELP}"
67 @PROMPT='%(?.%F{green}√.%F{red}?%?)%f %B%F{240}%1~%f%b %# ' zsh
67 @PROMPT='%(?.%F{green}√.%F{red}?%?)%f %B%F{240}%1~%f%b %# ' zsh
68
68
69
69
70 .PHONY: dev-cleanup
71 ## Cleanup: pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y
72 dev-cleanup:
73 pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y
74 rm -rf /tmp/*
75
76
70 .PHONY: dev-env
77 .PHONY: dev-env
71 ## make dev-env based on the requirements files and install develop of packages
78 ## make dev-env based on the requirements files and install develop of packages
72 ## Cleanup: pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y
79 ## Cleanup: pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y
73 dev-env:
80 dev-env:
74 sudo -u root chown rhodecode:rhodecode /home/rhodecode/.cache/pip/
81 sudo -u root chown rhodecode:rhodecode /home/rhodecode/.cache/pip/
75 pip install build virtualenv
82 pip install build virtualenv
76 pip wheel --wheel-dir=/home/rhodecode/.cache/pip/wheels -r requirements.txt -r requirements_test.txt -r requirements_debug.txt
83 pip wheel --wheel-dir=/home/rhodecode/.cache/pip/wheels -r requirements.txt -r requirements_test.txt -r requirements_debug.txt
77 pip install --no-index --find-links=/home/rhodecode/.cache/pip/wheels -r requirements.txt -r requirements_test.txt -r requirements_debug.txt
84 pip install --no-index --find-links=/home/rhodecode/.cache/pip/wheels -r requirements.txt -r requirements_test.txt -r requirements_debug.txt
78 pip install -e .
85 pip install -e .
79
86
80
87
81 .PHONY: sh
88 .PHONY: sh
82 ## shortcut for make dev-sh dev-env
89 ## shortcut for make dev-sh dev-env
83 sh:
90 sh:
84 make dev-env
91 make dev-env
85 make dev-sh
92 make dev-sh
86
93
87
94
88 ## Allows changes of workers e.g make dev-srv-g workers=2
95 ## Allows changes of workers e.g make dev-srv-g workers=2
89 workers?=1
96 workers?=1
90
97
91 .PHONY: dev-srv
98 .PHONY: dev-srv
92 ## run gunicorn web server with reloader, use workers=N to set multiworker mode
99 ## run gunicorn web server with reloader, use workers=N to set multiworker mode
93 dev-srv:
100 dev-srv:
94 gunicorn --paste=.dev/dev.ini --bind=0.0.0.0:10010 --config=.dev/gunicorn_config.py --reload --workers=$(workers)
101 gunicorn --paste=.dev/dev.ini --bind=0.0.0.0:10010 --config=.dev/gunicorn_config.py --reload --workers=$(workers)
95
102
96
103
97 # Default command on calling make
104 # Default command on calling make
98 .DEFAULT_GOAL := show-help
105 .DEFAULT_GOAL := show-help
99
106
100 .PHONY: show-help
107 .PHONY: show-help
101 show-help:
108 show-help:
102 @echo "$$(tput bold)Available rules:$$(tput sgr0)"
109 @echo "$$(tput bold)Available rules:$$(tput sgr0)"
103 @echo
110 @echo
104 @sed -n -e "/^## / { \
111 @sed -n -e "/^## / { \
105 h; \
112 h; \
106 s/.*//; \
113 s/.*//; \
107 :doc" \
114 :doc" \
108 -e "H; \
115 -e "H; \
109 n; \
116 n; \
110 s/^## //; \
117 s/^## //; \
111 t doc" \
118 t doc" \
112 -e "s/:.*//; \
119 -e "s/:.*//; \
113 G; \
120 G; \
114 s/\\n## /---/; \
121 s/\\n## /---/; \
115 s/\\n/ /g; \
122 s/\\n/ /g; \
116 p; \
123 p; \
117 }" ${MAKEFILE_LIST} \
124 }" ${MAKEFILE_LIST} \
118 | LC_ALL='C' sort --ignore-case \
125 | LC_ALL='C' sort --ignore-case \
119 | awk -F '---' \
126 | awk -F '---' \
120 -v ncol=$$(tput cols) \
127 -v ncol=$$(tput cols) \
121 -v indent=19 \
128 -v indent=19 \
122 -v col_on="$$(tput setaf 6)" \
129 -v col_on="$$(tput setaf 6)" \
123 -v col_off="$$(tput sgr0)" \
130 -v col_off="$$(tput sgr0)" \
124 '{ \
131 '{ \
125 printf "%s%*s%s ", col_on, -indent, $$1, col_off; \
132 printf "%s%*s%s ", col_on, -indent, $$1, col_off; \
126 n = split($$2, words, " "); \
133 n = split($$2, words, " "); \
127 line_length = ncol - indent; \
134 line_length = ncol - indent; \
128 for (i = 1; i <= n; i++) { \
135 for (i = 1; i <= n; i++) { \
129 line_length -= length(words[i]) + 1; \
136 line_length -= length(words[i]) + 1; \
130 if (line_length <= 0) { \
137 if (line_length <= 0) { \
131 line_length = ncol - indent - length(words[i]) - 1; \
138 line_length = ncol - indent - length(words[i]) - 1; \
132 printf "\n%*s ", -indent, " "; \
139 printf "\n%*s ", -indent, " "; \
133 } \
140 } \
134 printf "%s ", words[i]; \
141 printf "%s ", words[i]; \
135 } \
142 } \
136 printf "\n"; \
143 printf "\n"; \
137 }'
144 }'
General Comments 0
You need to be logged in to leave comments. Login now