forked from asciinema/asciinema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
31 lines (22 loc) · 771 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
NAME=asciinema
VERSION=`python3 -c "import asciinema; print(asciinema.__version__)"`
test: test-unit test-integration
test-unit:
nosetests
test-integration:
tests/integration.sh
release: test tag push
release-test: test push-test
tag:
git tag | grep "v$(VERSION)" && echo "Tag v$(VERSION) exists" && exit 1 || true
git tag -s -m "Releasing $(VERSION)" v$(VERSION)
git push origin v$(VERSION)
push:
python3 -m pip install --user --upgrade --quiet twine
python3 setup.py sdist bdist_wheel
python3 -m twine upload dist/*
push-test:
python3 -m pip install --user --upgrade --quiet twine
python3 setup.py sdist bdist_wheel
python3 -m twine upload --repository testpypi dist/*
.PHONY: test test-unit test-integration release release-test tag push push-test