]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
GHA/macos: verbose cmake in test steps
authorViktor Szakats <commit@vsz.me>
Tue, 18 Mar 2025 03:02:47 +0000 (04:02 +0100)
committerViktor Szakats <commit@vsz.me>
Tue, 18 Mar 2025 03:13:50 +0000 (04:13 +0100)
To sync with other workflows, and autotools. To see build details,
including clang-tidy invocations.

Closes #16757

.github/workflows/macos.yml

index 82e22228fbfaf0be0b1f67c992775adc74f52122..3d55125e89353049defcbcfbb772a04c4aea9381 100644 (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