From: Viktor Szakats Date: Tue, 18 Mar 2025 03:02:47 +0000 (+0100) Subject: GHA/macos: verbose cmake in test steps X-Git-Tag: curl-8_13_0~115 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=77861ace49672cad60777845c1288bd1fbc8ae01;p=thirdparty%2Fcurl.git GHA/macos: verbose cmake in test steps To sync with other workflows, and autotools. To see build details, including clang-tidy invocations. Closes #16757 --- 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