##// END OF EJS Templates
release: Bump version 5.2.0 to 5.2.1
release: Bump version 5.2.0 to 5.2.1

File last commit:

r5546:50cf7822 merge v5.2.0 stable
r5554:a05b3b36 v5.2.1 stable
Show More
Makefile
158 lines | 5.1 KiB | text/x-makefile | MakefileLexer
chore(makefile): updated makefile data
r5514 .DEFAULT_GOAL := help
# Pretty print values cf. https://misc.flogisoft.com/bash/tip_colors_and_formatting
RESET := \033[0m # Reset all formatting
GREEN := \033[0;32m # Resets before setting 16b colour (32 -- green)
YELLOW := \033[0;33m
ORANGE := \033[0;38;5;208m # Reset then set 256b colour (208 -- orange)
PEACH := \033[0;38;5;216m
## ---------------------------------------------------------------------------------- ##
## ------------------------- Help usage builder ------------------------------------- ##
## ---------------------------------------------------------------------------------- ##
# use '# >>> Build commands' to create section
# use '# target: target description' to create help for target
.PHONY: help
help:
@echo "Usage:"
@cat $(MAKEFILE_LIST) | grep -E '^# >>>|^# [A-Za-z0-9_.-]+:' | sed -E 's/^# //' | awk ' \
BEGIN { \
green="\033[32m"; \
yellow="\033[33m"; \
reset="\033[0m"; \
section=""; \
} \
/^>>>/ { \
section=substr($$0, 5); \
printf "\n" green ">>> %s" reset "\n", section; \
next; \
} \
/^([A-Za-z0-9_.-]+):/ { \
target=$$1; \
gsub(/:$$/, "", target); \
description=substr($$0, index($$0, ":") + 2); \
if (description == "") { description="-"; } \
printf " - " yellow "%-35s" reset " %s\n", target, description; \
} \
'
makefile: updated with latest changes, added gunicorn serve
r5036 # required for pushd to work..
deps: make dev-env build faster and bump all libs to latest versions
r5013 SHELL = /bin/bash
makefile: updated makefile to standard layout
r1220
chore(makefile): updated makefile data
r5514 # >>> Tests commands
project: added all source files and assets
r1
makefile: remove nix stuff, added self-document version
r4899 .PHONY: clean
chore(makefile): updated makefile data
r5514 # clean: Cleanup compiled and cache py files
makefile: updated makefile to standard layout
r1220 clean:
make test-clean
makefile: also cleanup .orig files
r3476 find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';'
makefile: always cleanup build dir
r5105 find . -type d -name "build" -prune -exec rm -rf '{}' ';'
makefile: remove nix stuff, added self-document version
r4899
makefile: added some helpers
r5181
makefile: remove nix stuff, added self-document version
r4899 .PHONY: test
chore(makefile): updated makefile data
r5514 # test: run test-clean and tests
makefile: updated makefile to standard layout
r1220 test:
make test-clean
chore(makefile): updated makefile data
r5514 unset RC_SQLALCHEMY_DB1_URL && unset RC_DB_URL && make test-only
makefile: added commands to quickly build docs.
r13
makefile: remove nix stuff, added self-document version
r4899
makefile: updated with latest changes, added gunicorn serve
r5036 .PHONY: test-clean
chore(makefile): updated makefile data
r5514 # test-clean: run test-clean and tests
makefile: updated makefile to standard layout
r1220 test-clean:
rm -rf coverage.xml htmlcov junit.xml pylint.log result
find . -type d -name "__pycache__" -prune -exec rm -rf '{}' ';'
makefile: cleanup coverage files for test cleanup
r3845 find . -type f \( -iname '.coverage.*' \) -exec rm '{}' ';'
makefile: updated makefile to standard layout
r1220
makefile: remove nix stuff, added self-document version
r4899
.PHONY: test-only
chore(makefile): updated makefile data
r5514 # test-only: Run tests only without cleanup
makefile: updated makefile to standard layout
r1220 test-only:
tests: allow running tests via make file on different databases
r2100 PYTHONHASHSEED=random \
makefile: remove nix stuff, added self-document version
r4899 py.test -x -vv -r xw -p no:sugar \
--cov-report=term-missing --cov-report=html \
--cov=rhodecode rhodecode
tests: allow running tests via make file on different databases
r2100
chore(makefile): updated makefile data
r5514 # >>> Docs commands
makefile: updated with latest changes, added gunicorn serve
r5036
makefile: remove nix stuff, added self-document version
r4899 .PHONY: docs
chore(makefile): updated makefile data
r5514 # docs: build docs
makefile: added commands to quickly build docs.
r13 docs:
docs: updated docs build for 5.0.X
r5344 (cd docs; docker run --rm -v $(PWD):/project --workdir=/project/docs sphinx-doc-build-rc make clean html SPHINXOPTS="-W")
project: added all source files and assets
r1
makefile: remove nix stuff, added self-document version
r4899
.PHONY: docs-clean
chore(makefile): updated makefile data
r5514 # docs-clean: Cleanup docs
makefile: added commands to quickly build docs.
r13 docs-clean:
feat(docs): new docs build logic...
r5193 (cd docs; docker run --rm -v $(PWD):/project --workdir=/project/docs sphinx-doc-build-rc make clean)
makefile: added commands to quickly build docs.
r13
makefile: remove nix stuff, added self-document version
r4899
.PHONY: docs-cleanup
chore(makefile): updated makefile data
r5514 # docs-cleanup: Cleanup docs
make: updated docs make commands.
r1214 docs-cleanup:
feat(docs): new docs build logic...
r5193 (cd docs; docker run --rm -v $(PWD):/project --workdir=/project/docs sphinx-doc-build-rc make cleanup)
make: updated docs make commands.
r1214
chore(makefile): updated makefile data
r5514 # >>> Dev commands
makefile: remove nix stuff, added self-document version
r4899
.PHONY: web-build
chore(makefile): updated makefile data
r5514 # web-build: Build JS packages static/js
project: added all source files and assets
r1 web-build:
chore: makefile, cleanup node_modules before generating a new ones
r5475 rm -rf node_modules
chore(dev): fix web-build command
r5239 docker run -it --rm -v $(PWD):/project --workdir=/project rhodecode/static-files-build:16 -c "npm install && /project/node_modules/.bin/grunt"
dev(static-files): new way of building static files
r5233 # run static file check
./rhodecode/tests/scripts/static-file-check.sh rhodecode/public/
rm -rf node_modules
project: added all source files and assets
r1
makefile: remove nix stuff, added self-document version
r4899
dev(makefile): added dev shell prompt
r5191 .PHONY: dev-sh
chore(makefile): updated makefile data
r5514 # dev-sh: make dev-sh
dev(makefile): added dev shell prompt
r5191 dev-sh:
dev(shell): make the shell use zshrc and better autocomplete
r5194 sudo echo "deb [trusted=yes] https://apt.fury.io/rsteube/ /" | sudo tee -a "/etc/apt/sources.list.d/fury.list"
dev(makefile): added dev shell prompt
r5191 sudo apt-get update
dev(shell): make the shell use zshrc and better autocomplete
r5194 sudo apt-get install -y zsh carapace-bin
dev(dev-shell): improvements to dev shell env
r5212 rm -rf /home/rhodecode/.oh-my-zsh
dev(makefile): added dev shell prompt
r5191 curl https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
chore(dev): print dev help cmd for nicer startup
r5305 @echo "source <(carapace _carapace)" > /home/rhodecode/.zsrc
@echo "${RC_DEV_CMD_HELP}"
dev(makefile): hide prompt info on dev sh env
r5327 @PROMPT='%(?.%F{green}√.%F{red}?%?)%f %B%F{240}%1~%f%b %# ' zsh
dev(makefile): added dev shell prompt
r5191
chore(dev): fixed makefile
r5222
.PHONY: dev-cleanup
chore(makefile): updated makefile data
r5514 # dev-cleanup: Cleanup: pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y
chore(dev): fixed makefile
r5222 dev-cleanup:
pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y
rm -rf /tmp/*
makefile: added dev-env command
r4905 .PHONY: dev-env
chore(makefile): updated makefile data
r5514 # dev-env: make dev-env based on the requirements files and install develop of packages
make: synced makefiles
r5414 ## Cleanup: pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y
makefile: added dev-env command
r4905 dev-env:
Andrii Verbytskyi
fixed permissions for pip cache folder
r5385 sudo -u root chown rhodecode:rhodecode /home/rhodecode/.cache/pip/
makefile: updated with latest changes, added gunicorn serve
r5036 pip install build virtualenv
makefile: fixed installing vcsserver for tests
r4967 pushd ../rhodecode-vcsserver/ && make dev-env && popd
makefile: updated with latest changes, added gunicorn serve
r5036 pip wheel --wheel-dir=/home/rhodecode/.cache/pip/wheels -r requirements.txt -r requirements_rc_tools.txt -r requirements_test.txt -r requirements_debug.txt
pip install --no-index --find-links=/home/rhodecode/.cache/pip/wheels -r requirements.txt -r requirements_rc_tools.txt -r requirements_test.txt -r requirements_debug.txt
makefile: added dev-env command
r4905 pip install -e .
makefile: updated with latest changes, added gunicorn serve
r5036
dev(makefile): added sh shortcut for faster launch of dev env and shell
r5209 .PHONY: sh
chore(makefile): updated makefile data
r5514 # sh: shortcut for make dev-sh dev-env
dev(makefile): added sh shortcut for faster launch of dev env and shell
r5209 sh:
chore(dev): updates to makefile
r5278 make dev-env
make dev-sh
dev(dev-shell): improvements to dev shell env
r5212
dev(makefile): added sh shortcut for faster launch of dev env and shell
r5209
makefile: allow starting gunicorn with workers=N command
r5404 ## Allows changes of workers e.g make dev-srv-g workers=2
workers?=1
makefile: added some helpers
r5181
fix(configs): removed waitress as a default runner for web service on development....
r5413 .PHONY: dev-srv
chore(makefile): updated makefile data
r5514 # dev-srv: run gunicorn web server with reloader, use workers=N to set multiworker mode, workers=N allows changes of workers
make: synced makefiles
r5414 dev-srv:
makefile: allow starting gunicorn with workers=N command
r5404 gunicorn --paste=.dev/dev.ini --bind=0.0.0.0:10020 --config=.dev/gunicorn_config.py --timeout=120 --reload --workers=$(workers)
makefile: updated with latest changes, added gunicorn serve
r5036
chore(makefile): updated makefile data
r5514 .PHONY: ruff-check
# ruff-check: run a ruff analysis
ruff-check:
ruff check --ignore F401 --ignore I001 --ignore E402 --ignore E501 --ignore F841 --exclude rhodecode/lib/dbmigrate --exclude .eggs --exclude .dev .
makefile: added some handly functions for package generation
r3531