tutor/Makefile

62 lines
1.8 KiB
Makefile
Raw Normal View History

.DEFAULT_GOAL := help
compile-requirements: ## Compile requirements files
pip-compile -o requirements/base.txt requirements/base.in
pip-compile -o requirements/dev.txt requirements/dev.in
2019-02-20 11:52:57 +00:00
pip-compile -o requirements/docs.txt requirements/docs.in
2017-12-26 00:16:35 +00:00
bundle: ## Bundle the tutor package in a single "dist/tutor" executable
pyinstaller --onefile --name=tutor --add-data=./tutor/templates:./tutor/templates ./bin/main
2018-09-29 15:22:55 +00:00
tag: ## Create a release, update the "latest" tag and push them to origin
$(MAKE) retag TAG=$(TAG)
$(MAKE) retag TAG=latest
retag:
2019-02-18 08:57:59 +00:00
@echo "=== Creating tag $(TAG)"
git tag -d $(TAG) || true
git tag $(TAG)
2019-02-18 08:57:59 +00:00
@echo "=== Pushing tag $(TAG)"
git push origin :$(TAG) || true
git push origin $(TAG)
travis: bundle ## Run tests on travis-ci
./dist/tutor config noninteractive
./dist/tutor images env
./dist/tutor images build all
./dist/tutor local databases
2019-02-10 20:02:30 +00:00
ci-info: ## Print info about environment
python3 --version
pip3 --version
ci-bundle: ## Create bundle
pip3 install -U setuptools
pip3 install -r requirements/dev.txt
$(MAKE) bundle
mkdir -p releases/
cp ./dist/tutor ./releases/tutor-$$(uname -s)_$$(uname -m)
2019-02-10 20:02:30 +00:00
ci-test: ## Run basic tests
./dist/tutor config noninteractive
./dist/tutor images env
./dist/tutor local env
ci-images: ## Build and push docker images to hub.docker.com
python setup.py develop
tutor images build all
tutor local databases
docker login -u "$$DOCKER_USERNAME" -p "$$DOCKER_PASSWORD"
tutor images push all
ci-pypi: ## Push release to pypi
pip install twine
python setup.py sdist
twine upload dist/*.tar.gz
2018-09-29 15:22:55 +00:00
ESCAPE = 
help: ## Print this help
@grep -E '^([a-zA-Z_-]+:.*?## .*|######* .+)$$' Makefile \
| sed 's/######* \(.*\)/\n $(ESCAPE)[1;31m\1$(ESCAPE)[0m/g' \
| awk 'BEGIN {FS = ":.*?## "}; {printf "\033[33m%-30s\033[0m %s\n", $$1, $$2}'