mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-22 08:12:27 +00:00
Fixed bug with sdist's name convention
This commit is contained in:
parent
db30257373
commit
2dbdb58b06
10
Makefile
10
Makefile
@ -3,7 +3,7 @@ PYMAIN=$(firstword $(PYVERSIONS))
|
|||||||
NAME=senpy
|
NAME=senpy
|
||||||
REPO=gsiupm
|
REPO=gsiupm
|
||||||
VERSION=$(shell cat $(NAME)/VERSION)
|
VERSION=$(shell cat $(NAME)/VERSION)
|
||||||
|
TARNAME=$(NAME)-$(subst -,.,$(VERSION)).tar.gz
|
||||||
|
|
||||||
all: build run
|
all: build run
|
||||||
|
|
||||||
@ -43,13 +43,13 @@ debug: debug-$(PYMAIN)
|
|||||||
test-%: build-%
|
test-%: build-%
|
||||||
docker run --rm -w /usr/src/app/ --entrypoint=/usr/local/bin/python -ti '$(REPO)/$(NAME):$(VERSION)-python$*' setup.py test --addopts "-vvv -s" ;
|
docker run --rm -w /usr/src/app/ --entrypoint=/usr/local/bin/python -ti '$(REPO)/$(NAME):$(VERSION)-python$*' setup.py test --addopts "-vvv -s" ;
|
||||||
|
|
||||||
dist/$(NAME)-$(VERSION).tar.gz:
|
dist/$(TARNAME):
|
||||||
docker run --rm -ti -v $$PWD:/usr/src/app/ -w /usr/src/app/ python:$(PYMAIN) python setup.py sdist;
|
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
|
sdist: dist/$(TARNAME)
|
||||||
|
|
||||||
pip_test-%: sdist
|
pip_test-%: sdist
|
||||||
docker run --rm -v $$PWD/dist:/dist/ -ti python:$* pip install /dist/$(NAME)-$(VERSION).tar.gz ;
|
docker run --rm -v $$PWD/dist:/dist/ -ti python:$* pip install /dist/$(TARNAME);
|
||||||
|
|
||||||
pip_test: $(addprefix pip_test-,$(PYVERSIONS))
|
pip_test: $(addprefix pip_test-,$(PYVERSIONS))
|
||||||
|
|
||||||
@ -79,4 +79,4 @@ pip_test: $(addprefix pip_test-,$(PYVERSIONS))
|
|||||||
run: build
|
run: build
|
||||||
docker run --rm -p 5000:5000 -ti '$(REPO)/$(NAME):$(VERSION)-python$(PYMAIN)'
|
docker run --rm -p 5000:5000 -ti '$(REPO)/$(NAME):$(VERSION)-python$(PYMAIN)'
|
||||||
|
|
||||||
.PHONY: test test-% build-% build test test_pip run yapf dev
|
.PHONY: test test-% build-% build test pip_test run yapf dev
|
||||||
|
Loading…
Reference in New Issue
Block a user