diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index adef3e6ef2..be0468ff8d 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -619,7 +619,7 @@ jobs: if [ "${MATRIX_BUILD}" = 'cmake' ]; then cmake --install bld --strip else - make install + make -C bld V=1 install fi - name: 'build tests' diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 68a7141013..cdb6de2834 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -457,7 +457,7 @@ jobs: if [ "${MATRIX_BUILD}" = 'cmake' ]; then cmake --install bld --strip else - make install + make -C bld V=1 install fi - name: 'build tests'