From 4207199c90c5888c0d00cbd9f2ba234d3fb202a9 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Fri, 14 Feb 2020 12:38:25 -0800 Subject: [PATCH] Force cleaning --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index aa52457..d665f1d 100644 --- a/Makefile +++ b/Makefile @@ -38,11 +38,13 @@ test-arm: build-arm test-all: test-amd64 test-arm .PHONY: test-s3-amd64 -test-s3-amd64: build-amd64 clean-minio +test-s3-amd64: build-amd64 + $(MAKE) clean-minio cd tests && ./test-compose.sh s3 $(DOCKER_TAG):amd64 .PHONY: test-s3-arm -test-s3-arm: build-arm clean-minio +test-s3-arm: build-arm + $(MAKE) clean-minio cd tests && ./test-compose.sh s3 $(DOCKER_TAG):arm .PHONY: test-s3-all