Merge pull request #1427 from consideRatio/pr/fix-tagging-issue

Fix failure to tag correctly
This commit is contained in:
Erik Sundell
2021-08-10 00:02:56 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -100,7 +100,7 @@ build-all: $(foreach I, $(ALL_IMAGES), build/$(I)) ## build all stacks
build-multi/%: DARGS?= build-multi/%: DARGS?=
build-multi/%: ## build the latest image for a stack on both amd64 and arm64 build-multi/%: ## build the latest image for a stack on both amd64 and arm64
@echo "::group::Build $(OWNER)/$(notdir $@) (system's architecture)" @echo "::group::Build $(OWNER)/$(notdir $@) (system's architecture)"
docker buildx build $(DARGS) --rm --force-rm -t $(OWNER)/$(notdir $@):latest ./$(notdir $@) --build-arg OWNER=$(OWNER) docker buildx build $(DARGS) --rm --force-rm -t $(OWNER)/$(notdir $@):latest ./$(notdir $@) --build-arg OWNER=$(OWNER) --load
@echo -n "Built image size: " @echo -n "Built image size: "
@docker images $(OWNER)/$(notdir $@):latest --format "{{.Size}}" @docker images $(OWNER)/$(notdir $@):latest --format "{{.Size}}"
@echo "::endgroup::" @echo "::endgroup::"

View File

@@ -1,5 +1,5 @@
[pytest] [pytest]
addopts = -ra addopts = -ra --color=yes
log_cli = 1 log_cli = 1
log_cli_level = INFO log_cli_level = INFO
log_cli_format = %(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s) log_cli_format = %(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)