From 35e8f42bc1b0d7f7cdaf272d1dbf8a36de4b5c40 Mon Sep 17 00:00:00 2001 From: Gerard Marull-Paretas Date: Fri, 7 Jan 2022 13:39:31 +0100 Subject: [PATCH] ci: doc-build: use --no-verbose when using wget The -q flag supresses all wget output, even when there is a failure. This makes it difficult to diagnose CI failures when the download fails. The --no-verbose flag is a better choice: it is silent enough but it always shows the outcome. Signed-off-by: Gerard Marull-Paretas --- .github/workflows/doc-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/doc-build.yml b/.github/workflows/doc-build.yml index 14f5a86de64..8381171ca8a 100644 --- a/.github/workflows/doc-build.yml +++ b/.github/workflows/doc-build.yml @@ -49,7 +49,7 @@ jobs: run: | sudo apt-get update sudo apt-get install -y ninja-build graphviz libclang1-9 libclang-cpp9 - wget -q https://www.doxygen.nl/files/doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz + wget --no-verbose https://www.doxygen.nl/files/doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz tar xf doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz echo "${PWD}/doxygen-${DOXYGEN_VERSION}/bin" >> $GITHUB_PATH