2018-09-29 15:08:39 +00:00
|
|
|
|
.DEFAULT_GOAL := help
|
|
|
|
|
|
2019-03-18 16:26:37 +00:00
|
|
|
|
###### Development
|
|
|
|
|
|
2019-01-22 20:25:04 +00:00
|
|
|
|
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
|
|
|
|
|
2019-05-05 09:40:49 +00:00
|
|
|
|
test: test-lint test-unit test-format ## Run all tests by decreasing order or priority
|
|
|
|
|
|
|
|
|
|
test-format: ## Run code formatting tests
|
|
|
|
|
black --check --diff tutor
|
|
|
|
|
|
|
|
|
|
test-lint: ## Run code linting tests
|
|
|
|
|
pylint --errors-only tutor
|
|
|
|
|
|
|
|
|
|
test-unit: ## Run unit tests
|
2019-05-05 09:44:48 +00:00
|
|
|
|
python3 -m unittest discover tests
|
2019-03-23 23:16:03 +00:00
|
|
|
|
|
2019-05-05 09:40:49 +00:00
|
|
|
|
format: ## Format code automatically
|
|
|
|
|
black ./tutor
|
|
|
|
|
|
2019-03-18 16:26:37 +00:00
|
|
|
|
###### Deployment
|
|
|
|
|
|
2019-01-22 20:25:04 +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
|
2019-02-24 19:14:25 +00:00
|
|
|
|
dist/tutor:
|
|
|
|
|
$(MAKE) bundle
|
|
|
|
|
|
2019-03-21 21:51:35 +00:00
|
|
|
|
nightly: ## Create a "nightly" release
|
|
|
|
|
$(MAKE) tag TAG=nightly
|
2019-02-18 08:22:41 +00:00
|
|
|
|
|
2019-04-22 11:29:53 +00:00
|
|
|
|
release: ## Create a release tag and push it to origin
|
2019-03-21 21:51:35 +00:00
|
|
|
|
$(MAKE) tag TAG=v$(shell make version)
|
|
|
|
|
|
|
|
|
|
tag:
|
2019-02-18 08:57:59 +00:00
|
|
|
|
@echo "=== Creating tag $(TAG)"
|
2019-02-18 08:22:41 +00:00
|
|
|
|
git tag -d $(TAG) || true
|
|
|
|
|
git tag $(TAG)
|
2019-02-18 08:57:59 +00:00
|
|
|
|
@echo "=== Pushing tag $(TAG)"
|
2019-02-18 08:22:41 +00:00
|
|
|
|
git push origin :$(TAG) || true
|
|
|
|
|
git push origin $(TAG)
|
|
|
|
|
|
2019-03-18 16:26:37 +00:00
|
|
|
|
###### Continuous integration tasks
|
|
|
|
|
|
2019-02-10 20:02:30 +00:00
|
|
|
|
ci-info: ## Print info about environment
|
|
|
|
|
python3 --version
|
|
|
|
|
pip3 --version
|
|
|
|
|
|
2019-03-18 16:26:37 +00:00
|
|
|
|
ci-bundle: ## Create bundle and run basic tests
|
2019-02-10 20:02:30 +00:00
|
|
|
|
pip3 install -U setuptools
|
|
|
|
|
pip3 install -r requirements/dev.txt
|
2019-05-05 09:44:48 +00:00
|
|
|
|
$(MAKE) test
|
2019-02-10 20:02:30 +00:00
|
|
|
|
$(MAKE) bundle
|
2019-02-18 08:22:41 +00:00
|
|
|
|
mkdir -p releases/
|
2019-03-18 16:26:37 +00:00
|
|
|
|
./dist/tutor --version
|
|
|
|
|
./dist/tutor config printroot
|
2019-04-27 08:58:43 +00:00
|
|
|
|
yes "" | ./dist/tutor config save
|
2019-04-09 18:17:19 +00:00
|
|
|
|
./dist/tutor config save --yes --set ACTIVATE_NOTES=true --set ACTIVATE_XQUEUE=true
|
2019-02-10 20:02:30 +00:00
|
|
|
|
|
2019-04-22 13:17:45 +00:00
|
|
|
|
./releases/github-release: ## Download github-release binary
|
|
|
|
|
cd releases/ \
|
|
|
|
|
&& curl -sSL -o ./github-release.tar.bz2 "https://github.com/aktau/github-release/releases/download/v0.7.2/$(shell uname -s | tr "[:upper:]" "[:lower:]")-amd64-github-release.tar.bz2" \
|
|
|
|
|
&& bzip2 -d -f ./github-release.tar.bz2 \
|
|
|
|
|
&& tar xf github-release.tar \
|
|
|
|
|
&& mv "bin/$(shell uname -s | tr "[:upper:]" "[:lower:]")/amd64/github-release" .
|
|
|
|
|
|
|
|
|
|
ci-github: ./releases/github-release ## Upload assets to github
|
|
|
|
|
sed "s/TUTOR_VERSION/v$(shell make version)/g" docs/_release_description.md > releases/description.md
|
2019-04-22 13:14:46 +00:00
|
|
|
|
git log -1 --pretty=format:%b >> releases/description.md
|
2019-04-22 13:17:45 +00:00
|
|
|
|
./releases/github-release release \
|
2019-04-22 13:14:46 +00:00
|
|
|
|
--user regisb \
|
|
|
|
|
--repo tutor \
|
2019-04-22 13:17:45 +00:00
|
|
|
|
--tag "v$(shell make version)" \
|
|
|
|
|
--name "v$(shell make version)" \
|
2019-04-22 13:14:46 +00:00
|
|
|
|
--description "$$(cat releases/description.md)" || true
|
2019-04-22 13:17:45 +00:00
|
|
|
|
./releases/github-release upload \
|
2019-04-22 13:14:46 +00:00
|
|
|
|
--user regisb \
|
|
|
|
|
--repo tutor \
|
2019-04-22 13:17:45 +00:00
|
|
|
|
--tag "v$(shell make version)" \
|
2019-04-22 13:14:46 +00:00
|
|
|
|
--name "tutor-$$(uname -s)_$$(uname -m)" \
|
2019-04-22 13:17:45 +00:00
|
|
|
|
--file ./dist/tutor \
|
2019-04-22 13:14:46 +00:00
|
|
|
|
--replace
|
|
|
|
|
|
2019-02-10 20:02:30 +00:00
|
|
|
|
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
|
|
|
|
|
|
2019-03-18 16:26:37 +00:00
|
|
|
|
###### Additional commands
|
|
|
|
|
|
|
|
|
|
version: ## Print the current tutor version
|
|
|
|
|
@python -c 'import io, os; about = {}; exec(io.open(os.path.join("tutor", "__about__.py"), "rt", encoding="utf-8").read(), about); print(about["__version__"])'
|
|
|
|
|
|
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}'
|