From 0b97a67cfa04a2377ea7fb787e416b385f71abc5 Mon Sep 17 00:00:00 2001 From: Ludovic Fernandez Date: Mon, 2 Oct 2017 14:22: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 0ffb5e819..0c04bc283 100644 --- a/Makefile +++ b/Makefile @@ -114,7 +114,7 @@ fmt: gofmt -s -l -w $(SRCS) pull-images: - grep --no-filename -E '^\s+image:' ./integration/resources/compose/*.yml | awk '{print $$2}' | sort | uniq | xargs -n 1 docker pull + grep --no-filename -E '^\s+image:' ./integration/resources/compose/*.yml | 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)