1
0
Fork 0

crossbinary default is now executed before deploy using multiple make jobs in parallel

This commit is contained in:
Attilio Borello 2017-05-04 09:31:39 +02:00 committed by Fernandez Ludovic
parent ccda550ab1
commit 219bcec40f
5 changed files with 33 additions and 11 deletions

View file

@ -41,15 +41,22 @@ crossbinary: generate-webui build ## cross build the non-linux binaries
crossbinary-parallel:
$(MAKE) generate-webui
$(MAKE) build
$(MAKE) crossbinary-default crossbinary-others
$(MAKE) build crossbinary-default crossbinary-others
crossbinary-default: generate-webui build
$(DOCKER_RUN_TRAEFIK_NOTTY) ./script/make.sh generate crossbinary-default
crossbinary-default-parallel:
$(MAKE) generate-webui
$(MAKE) build crossbinary-default
crossbinary-others: generate-webui build
$(DOCKER_RUN_TRAEFIK_NOTTY) ./script/make.sh generate crossbinary-others
crossbinary-others-parallel:
$(MAKE) generate-webui
$(MAKE) build crossbinary-others
test: build ## run the unit and integration tests
$(DOCKER_RUN_TRAEFIK) ./script/make.sh generate test-unit binary test-integration