mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-14 12:42:27 +00:00
Update Makefile to avoid CI build errors
This commit is contained in:
parent
9dbe22b81f
commit
666632a032
10
Makefile
10
Makefile
@ -13,19 +13,15 @@ ifdef SENPY_FOLDER
|
|||||||
|
|
||||||
all: build run
|
all: build run
|
||||||
|
|
||||||
test-%:
|
test-fast:
|
||||||
docker run $(DOCKER_FLAGS) -v $$PWD/$*:/senpy-plugins/ -v $$PWD/data:/data/ --rm $(IMAGEWTAG) --only-test $(TEST_FLAGS)
|
docker run $(DOCKER_FLAGS) -v $$PWD/$*:/senpy-plugins/ -v $$PWD/data:/data/ --rm $(IMAGEWTAG) --only-test $(TEST_FLAGS)
|
||||||
|
|
||||||
test: test-.
|
test: docker-build test-fast
|
||||||
|
|
||||||
dev:
|
dev:
|
||||||
docker run -p $(DEV_PORT):5000 $(DOCKER_FLAGS) -ti $(DOCKER_FLAGS) -v $$PWD/$*:/senpy-plugins/ --entrypoint /bin/bash -v $$PWD/data:/data/ --rm $(IMAGEWTAG)
|
docker run -p $(DEV_PORT):5000 $(DOCKER_FLAGS) -ti $(DOCKER_FLAGS) -v $$PWD/$*:/senpy-plugins/ --entrypoint /bin/bash -v $$PWD/data:/data/ --rm $(IMAGEWTAG)
|
||||||
|
|
||||||
clean-docker:
|
.PHONY:: test test-fast dev
|
||||||
@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
|
|
||||||
|
|
||||||
.PHONY:: test test-% build-% build test test_pip run clean
|
|
||||||
|
|
||||||
include .makefiles/base.mk
|
include .makefiles/base.mk
|
||||||
include .makefiles/k8s.mk
|
include .makefiles/k8s.mk
|
||||||
|
Loading…
Reference in New Issue
Block a user