From 77861ace49672cad60777845c1288bd1fbc8ae01 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 18 Mar 2025 04:02:47 +0100 Subject: [PATCH] GHA/macos: verbose cmake in test steps To sync with other workflows, and autotools. To see build details, including clang-tidy invocations. Closes #16757 --- .github/workflows/macos.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 82e22228fb..3d55125e89 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -302,7 +302,7 @@ jobs: - name: 'build tests' run: | if [ -n '${{ matrix.build.generate }}' ]; then - cmake --build bld --target testdeps + cmake --build bld --verbose --target testdeps else make -C bld V=1 -C tests fi @@ -325,7 +325,7 @@ jobs: source $HOME/venv/bin/activate rm -f $HOME/.curlrc if [ -n '${{ matrix.build.generate }}' ]; then - cmake --build bld --target ${{ matrix.build.torture && 'test-torture' || 'test-ci' }} + cmake --build bld --verbose --target ${{ matrix.build.torture && 'test-torture' || 'test-ci' }} else make -C bld V=1 ${{ matrix.build.torture && 'test-torture' || 'test-ci' }} fi -- 2.47.3