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.
pull/1795/head
Daniele Forsi IU5HKX 2025-07-05 09:57:46 +02:00
rodzic 55805c90c9
commit bdde43f175
1 zmienionych plików z 4 dodań i 6 usunięć

Wyświetl plik

@ -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