staking-deposit-cli/Makefile

61 lines
2.0 KiB
Makefile
Raw Normal View History

VENV_NAME?=venv
VENV_ACTIVATE=. $(VENV_NAME)/bin/activate
PYTHON=${VENV_NAME}/bin/python3.8
2021-08-24 12:22:53 +00:00
DOCKER_IMAGE="ethereum/staking-deposit-cli:latest"
help:
@echo "clean - remove build and Python file artifacts"
# Run with venv
@echo "venv_deposit - run deposit cli with venv"
@echo "venv_build - install basic dependencies with venv"
@echo "venv_build_test - install testing dependencies with venv"
@echo "venv_lint - check style with flake8 and mypy with venv"
@echo "venv_test - run tests with venv"
2020-02-18 16:44:32 +00:00
clean:
rm -rf venv/
2020-05-07 04:39:04 +00:00
rm -rf build/
rm -rf dist/
rm -rf *.egg-info
2020-05-21 19:37:43 +00:00
rm -rf .tox/
2020-02-18 16:44:32 +00:00
find . -name __pycache__ -exec rm -rf {} \;
find . -name .mypy_cache -exec rm -rf {} \;
find . -name .pytest_cache -exec rm -rf {} \;
$(VENV_NAME)/bin/activate: requirements.txt
@test -d $(VENV_NAME) || python3 -m venv --clear $(VENV_NAME)
${VENV_NAME}/bin/python setup.py install
${VENV_NAME}/bin/python -m pip install -r requirements.txt
${VENV_NAME}/bin/python -m pip install -r requirements_test.txt
@touch $(VENV_NAME)/bin/activate
2020-10-14 19:21:46 +00:00
venv_build: $(VENV_NAME)/bin/activate
venv_build_test: venv_build
${VENV_NAME}/bin/python -m pip install -r requirements_test.txt
venv_test: venv_build_test
2021-04-02 12:54:07 +00:00
$(VENV_ACTIVATE) && python -m pytest ./tests
2020-02-18 16:44:32 +00:00
venv_lint: venv_build_test
2021-08-23 10:33:04 +00:00
$(VENV_ACTIVATE) && flake8 --config=flake8.ini ./staking_deposit ./tests && mypy --config-file mypy.ini -p staking_deposit
2020-02-18 16:44:32 +00:00
venv_deposit: venv_build
2021-08-23 10:33:04 +00:00
$(VENV_ACTIVATE) && python ./staking_deposit/deposit.py $(filter-out $@,$(MAKECMDGOALS))
2020-07-24 12:23:37 +00:00
build_macos: venv_build
${VENV_NAME}/bin/python -m pip install -r ./build_configs/macos/requirements.txt
export PYTHONHASHSEED=42; \
$(VENV_ACTIVATE) && pyinstaller ./build_configs/macos/build.spec;
2020-07-27 09:43:32 +00:00
build_linux: venv_build
${VENV_NAME}/bin/python -m pip install -r ./build_configs/linux/requirements.txt
export PYTHONHASHSEED=42; \
2020-07-27 09:43:32 +00:00
$(VENV_ACTIVATE) && pyinstaller ./build_configs/linux/build.spec
2020-10-22 08:01:51 +00:00
build_docker:
@docker build --pull -t $(DOCKER_IMAGE) .
run_docker:
2020-11-03 06:28:19 +00:00
@docker run -it --rm $(DOCKER_IMAGE) $(filter-out $@,$(MAKECMDGOALS))