GHA/macos: verbose cmake in test steps

To sync with other workflows, and autotools. To see build details,
including clang-tidy invocations.

Closes #16757
This commit is contained in:
Viktor Szakats 2025-03-18 04:02:47 +01:00
parent e61bbbd8fa
commit 77861ace49
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

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