From 64ce7adff0e62983667f342a0eeded969e827ed8 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Wed, 1 May 2024 17:09:56 -0700 Subject: [PATCH] CI: Run the configure step in verbose mode and print the config output Signed-off-by: Thiago Macieira --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81135f03..b3858ac3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -119,7 +119,7 @@ jobs: eval "$EVAL" # FIXME: remove -Wno-error-line below. export CFLAGS="$CFLAGS -Wno-error=implicit-function-declaration" - make OUT=.config -s -f Makefile.configure configure | tee .config + make OUT=.config V=1 -s -f Makefile.configure configure && cat .config make -k \ CFLAGS="$CFLAGS -march=native -g1 -Wall -Wextra -Werror" \ CPPFLAGS="-DNDEBUG -DCBOR_ENCODER_WRITER_CONTROL=-1 -DCBOR_PARSER_READER_CONTROL=-1" \