2016-09-21 08:10:49 +00:00
|
|
|
PYVERSIONS=3.4 2.7
|
2016-09-21 16:59:28 +00:00
|
|
|
PYMAIN=$(firstword $(PYVERSIONS))
|
2016-09-20 18:55:59 +00:00
|
|
|
NAME=senpy
|
|
|
|
REPO=gsiupm
|
|
|
|
VERSION=$(shell cat $(NAME)/VERSION)
|
|
|
|
|
|
|
|
|
|
|
|
all: build run
|
|
|
|
|
|
|
|
dockerfiles: $(addprefix Dockerfile-,$(PYVERSIONS))
|
2016-12-19 17:18:47 +00:00
|
|
|
ln -s Dockerfile-$(PYMAIN) Dockerfile
|
2016-09-20 18:55:59 +00:00
|
|
|
|
|
|
|
Dockerfile-%: Dockerfile.template
|
|
|
|
sed "s/{{PYVERSION}}/$*/" Dockerfile.template > Dockerfile-$*
|
|
|
|
|
2016-09-21 16:59:28 +00:00
|
|
|
build: $(addprefix build-, $(PYMAIN))
|
|
|
|
|
|
|
|
buildall: $(addprefix build-, $(PYVERSIONS))
|
2016-09-20 18:55:59 +00:00
|
|
|
|
|
|
|
build-%: Dockerfile-%
|
|
|
|
docker build -t '$(REPO)/$(NAME):$(VERSION)-python$*' -f Dockerfile-$* .;
|
|
|
|
|
2017-01-10 09:02:14 +00:00
|
|
|
build-debug-%:
|
|
|
|
docker build -t '$(NAME)-debug' -f Dockerfile-debug-$* .;
|
|
|
|
|
2016-09-21 16:59:28 +00:00
|
|
|
test: $(addprefix test-,$(PYMAIN))
|
|
|
|
|
|
|
|
testall: $(addprefix test-,$(PYVERSIONS))
|
2016-09-20 18:55:59 +00:00
|
|
|
|
2017-01-10 09:02:14 +00:00
|
|
|
debug-%: build-debug-%
|
|
|
|
docker run --rm -w /usr/src/app/ -v $$PWD:/usr/src/app --entrypoint=/bin/bash -ti $(NAME)-debug ;
|
|
|
|
|
|
|
|
debug: debug-$(PYMAIN)
|
2016-12-19 17:18:47 +00:00
|
|
|
|
2016-09-20 18:55:59 +00:00
|
|
|
test-%: build-%
|
2016-12-19 17:18:47 +00:00
|
|
|
docker run --rm -w /usr/src/app/ --entrypoint=/usr/local/bin/python -ti '$(REPO)/$(NAME):$(VERSION)-python$*' setup.py test --addopts "-vvv -s" ;
|
2016-09-21 16:59:28 +00:00
|
|
|
|
2016-12-14 13:38:58 +00:00
|
|
|
dist/$(NAME)-$(VERSION).tar.gz:
|
|
|
|
docker run --rm -ti -v $$PWD:/usr/src/app/ -w /usr/src/app/ python:$(PYMAIN) python setup.py sdist;
|
|
|
|
|
|
|
|
sdist: dist/$(NAME)-$(VERSION).tar.gz
|
|
|
|
|
|
|
|
pip_test-%: sdist
|
|
|
|
docker run --rm -v $$PWD/dist:/dist/ -ti python:$* pip install /dist/$(NAME)-$(VERSION).tar.gz ;
|
|
|
|
|
|
|
|
pip_test: $(addprefix pip_test-,$(PYVERSIONS))
|
2016-09-21 16:59:28 +00:00
|
|
|
|
|
|
|
upload-%: test-%
|
2016-12-19 17:18:47 +00:00
|
|
|
docker push '$(REPO)/$(NAME):$(VERSION)-python$*'
|
2016-09-20 18:55:59 +00:00
|
|
|
|
2016-09-21 16:59:28 +00:00
|
|
|
upload: testall $(addprefix upload-,$(PYVERSIONS))
|
|
|
|
docker tag '$(REPO)/$(NAME):$(VERSION)-python$(PYMAIN)' '$(REPO)/$(NAME):$(VERSION)'
|
2016-09-21 18:27:30 +00:00
|
|
|
docker tag '$(REPO)/$(NAME):$(VERSION)-python$(PYMAIN)' '$(REPO)/$(NAME)'
|
|
|
|
docker push '$(REPO)/$(NAME):$(VERSION)'
|
|
|
|
|
|
|
|
clean:
|
|
|
|
@docker ps -a | awk '/$(REPO)\/$(NAME)/{ split($$2, vers, "-"); if(vers[1] != "${VERSION}"){ print $$1;}}' | xargs docker rm 2>/dev/null|| true
|
|
|
|
@docker images | awk '/$(REPO)\/$(NAME)/{ split($$2, vers, "-"); if(vers[1] != "${VERSION}"){ print $$1":"$$2;}}' | xargs docker rmi 2>/dev/null|| true
|
2017-01-10 09:02:14 +00:00
|
|
|
@docker rmi $(NAME)-debug 2>/dev/null || true
|
2016-09-21 18:27:30 +00:00
|
|
|
|
2016-09-21 18:29:16 +00:00
|
|
|
upload_git:
|
|
|
|
git commit -a
|
|
|
|
git tag ${VERSION}
|
|
|
|
git push --tags origin master
|
2016-09-21 08:10:49 +00:00
|
|
|
|
2016-09-21 16:59:28 +00:00
|
|
|
pip_upload:
|
|
|
|
python setup.py sdist upload ;
|
2016-09-21 08:10:49 +00:00
|
|
|
|
2016-09-21 16:59:28 +00:00
|
|
|
pip_test: $(addprefix pip_test-,$(PYVERSIONS))
|
2016-09-21 08:10:49 +00:00
|
|
|
|
2016-09-21 16:59:28 +00:00
|
|
|
run: build
|
|
|
|
docker run --rm -p 5000:5000 -ti '$(REPO)/$(NAME):$(VERSION)-python$(PYMAIN)'
|
2016-09-20 18:55:59 +00:00
|
|
|
|
2016-09-21 16:59:28 +00:00
|
|
|
.PHONY: test test-% build-% build test test_pip run
|