From a275c665d7fcb3db5e0dc17ff7ea3aebdd23ddd3 Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Wed, 16 Oct 2019 14:46:54 +0200 Subject: [PATCH] build: restore automatic building of images during 'docker push' https://github.com/intel/pmem-csi/pull/430 unintentionally disabled the make dependencies. That was used during debugging and shouldn't have been included in the PR. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index abe9958885..3ffc645f99 100644 --- a/Makefile +++ b/Makefile @@ -93,7 +93,7 @@ build-image build-test-image: build%-image: PUSH_IMAGE_DEP = build%-image # "docker push" has been seen to fail temporarily with "error creating overlay mount to /var/lib/docker/overlay2/xxx/merged: device or resource busy". # Here we simply try three times before giving up. -push-image push-test-image: push%-image: # $(PUSH_IMAGE_DEP) +push-image push-test-image: push%-image: $(PUSH_IMAGE_DEP) @ i=0; while true; do \ if (set -x; docker push $(IMAGE_TAG)); then \ exit 0; \