From 3918aa963141ae2c546d04115f3f9d3d8da46a58 Mon Sep 17 00:00:00 2001 From: Ross Bencina Date: Fri, 17 Apr 2026 09:23:04 +1000 Subject: [PATCH 1/2] CI: cmake.yml: list contents of install dir after running cmake --install for inspection purposes --- .github/workflows/cmake.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index f27c263e7..da4999fc9 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -113,6 +113,8 @@ jobs: run: cmake --build ${{ github.workspace }}/build --config ${{ env.cmake_build_type }} --parallel 4 - name: Install PortAudio library run: cmake --install ${{ github.workspace }}/build --config ${{ env.cmake_build_type }} + - name: List Install Dirs (post-install) + run: ls -ra ${{ github.workspace }}/build # Required for vcpkg packages to be found by CMake's find_package() - name: Enter build-test From 64b7491e5fe7658465a296729b55c919c2ba2bd8 Mon Sep 17 00:00:00 2001 From: Ross Bencina Date: Fri, 17 Apr 2026 09:29:37 +1000 Subject: [PATCH 2/2] `ls -Ra` not `ls -ra` --- .github/workflows/cmake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index da4999fc9..ff12be536 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -114,7 +114,7 @@ jobs: - name: Install PortAudio library run: cmake --install ${{ github.workspace }}/build --config ${{ env.cmake_build_type }} - name: List Install Dirs (post-install) - run: ls -ra ${{ github.workspace }}/build + run: ls -Ra ${{ github.workspace }}/build # Required for vcpkg packages to be found by CMake's find_package() - name: Enter build-test