From bdde43f175692144e436e3d3bf1b23fd4c648925 Mon Sep 17 00:00:00 2001 From: Daniele Forsi IU5HKX Date: Sat, 5 Jul 2025 09:57:46 +0200 Subject: [PATCH] Execute make with less verbosity for better readability This replaces the lines "Entering directory {DIRECTORY}" / "Leaving directory {DIRECTORY}" with just "Making {TARGET} {DIRECTORY}" and hides other output. Warning and errors are shown anyway. --- .github/workflows/c-cpp.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 6e4c021c7..7ae182bca 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -76,14 +76,12 @@ jobs: run: grep README Makefile.am - name: configure if: runner.os != 'macOS' - run: ./configure ${{ matrix.configure_args }} + run: ./configure ${{ matrix.configure_args }} --enable-silent-rules - name: configure on macOS if: runner.os == 'macOS' - run: ./configure ${{ matrix.configure_args }} --without-python-binding + run: ./configure ${{ matrix.configure_args }} --enable-silent-rules --without-python-binding - name: make - run: make -j 4 - - name: make check - run: make check + run: make -j 4 V=0 --no-print-directory - name: make distcheck - run: make distcheck + run: make distcheck V=0 --no-print-directory