From 535342d7eab61a25c521ec27e8d525bc563c04ae Mon Sep 17 00:00:00 2001 From: Ivan Zhakov Date: Sun, 1 Sep 2024 15:01:40 +0000 Subject: [PATCH] .github/workflows/windows.yml: Test cmake --install. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1920350 13f79535-47bb-0310-9956-ffa450edef68 --- .github/workflows/windows.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 97d369e7c4..5c1258c3dd 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -42,3 +42,6 @@ jobs: # Execute tests defined by the CMake configuration. # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail run: ctest -C ${{ matrix.build-type }} --output-on-failure + + - name: Install + run: cmake --install ${{github.workspace}}/build --config ${{ matrix.build-type }}