[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 02/12] tests/docker: cleanup non-verbose output
From: |
Alex Bennée |
Subject: |
[PATCH v3 02/12] tests/docker: cleanup non-verbose output |
Date: |
Tue, 29 Aug 2023 17:15:18 +0100 |
Even with --quiet docker will spam the sha256 to the console. Avoid
this by redirecting stdout. While we are at it fix the name we echo
which was broken during 0b1a649047 (tests/docker: use direct RUNC call
to build containers).
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
tests/docker/Makefile.include | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/docker/Makefile.include b/tests/docker/Makefile.include
index 142e8605ee..dfabafab92 100644
--- a/tests/docker/Makefile.include
+++ b/tests/docker/Makefile.include
@@ -46,9 +46,9 @@ docker-image-%: $(DOCKER_FILES_DIR)/%.docker
--build-arg BUILDKIT_INLINE_CACHE=1 \
$(if $(NOUSER),, \
--build-arg USER=$(USER) \
- --build-arg UID=$(UID)) \
- -t qemu/$* - < $<, \
- "BUILD", $1)
+ --build-arg UID=$(UID)) \
+ -t qemu/$* - < $< $(if $V,,> /dev/null),\
+ "BUILD", $*)
# Special rule for debootstraped binfmt linux-user images
docker-binfmt-image-debian-%: $(DOCKER_FILES_DIR)/debian-bootstrap.docker
--
2.39.2
- [PATCH v3 00/12] gdbstub and testing fixes for 8.2 (pre-PR), Alex Bennée, 2023/08/29
- [PATCH v3 02/12] tests/docker: cleanup non-verbose output,
Alex Bennée <=
- [PATCH v3 01/12] gitlab: enable ccache for many build jobs, Alex Bennée, 2023/08/29
- [PATCH v3 03/12] tests/tcg: remove quoting for info output, Alex Bennée, 2023/08/29
- [PATCH v3 05/12] .gitlab-ci.d/cirrus.yml: Update FreeBSD to v13.2, Alex Bennée, 2023/08/29
- [PATCH v3 11/12] gdbstub: replace global gdb_has_xml with a function, Alex Bennée, 2023/08/29
- [PATCH v3 10/12] gdbstub: refactor get_feature_xml, Alex Bennée, 2023/08/29
- [PATCH v3 09/12] gdbstub: remove unused user_ctx field, Alex Bennée, 2023/08/29
- [PATCH v3 04/12] docs/style: permit inline loop variables, Alex Bennée, 2023/08/29
- [PATCH v3 07/12] tests/tcg: clean-up gdb confirm/pagination settings, Alex Bennée, 2023/08/29
- [PATCH v3 06/12] tests: remove test-gdbstub.py, Alex Bennée, 2023/08/29
- [PATCH v3 12/12] gdbstub: move comment for gdb_register_coprocessor, Alex Bennée, 2023/08/29