From 4fa69214135a32cac977ccca3efee904145f3b3c Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 25 Apr 2024 16:29:49 +0200 Subject: [PATCH] ci/GHA: dump `config.log` on failure for macOS autotools jobs (#1375) --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64c6eacf..53852b4e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -561,7 +561,8 @@ jobs: mkdir bld && cd bld && ../configure --enable-werror --enable-debug \ --with-libz ${{ matrix.crypto.configure }} \ --disable-docker-tests \ - --disable-sshd-tests + --disable-sshd-tests \ + || { tail -n 1000 config.log; false; } - name: 'autotools build' if: ${{ matrix.build == 'autotools' }}