From 058fa1367b49587133c48aa8f1e06d6e615a1884 Mon Sep 17 00:00:00 2001 From: Ludovic Fernandez Date: Fri, 22 Sep 2017 16:46:03 +0200 Subject: [PATCH] CI: speed up pull images. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5799a0822..2eede96cd 100644 --- a/Makefile +++ b/Makefile @@ -114,7 +114,7 @@ fmt: gofmt -s -l -w $(SRCS) pull-images: - cat ./integration/resources/compose/*.yml | grep -E '^\s+image:' | awk '{print $$2}' | sort | uniq | xargs -n 1 docker pull + cat ./integration/resources/compose/*.yml | grep -E '^\s+image:' | awk '{print $$2}' | sort | uniq | xargs -P 6 -n 1 docker pull help: ## this help @awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {sub("\\\\n",sprintf("\n%22c"," "), $$2);printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)