Force cleaning

This commit is contained in:
ViViDboarder 2020-02-14 12:38:25 -08:00
parent 788e9a8664
commit 4207199c90
1 changed files with 4 additions and 2 deletions

View File

@ -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