svn commit: r1920350 - /apr/apr/trunk/.github/workflows/windows.yml
| Newsgroups | gmane.comp.apache.apr.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: ivan
Date: Sun Sep 1 15:01:40 2024
New Revision: 1920350
URL: http://svn.apache.org/viewvc?rev=1920350&view=rev
Log:
.github/workflows/windows.yml: Test cmake --install.
Modified:
apr/apr/trunk/.github/workflows/windows.yml
Modified: apr/apr/trunk/.github/workflows/windows.yml
URL: http://svn.apache.org/viewvc/apr/apr/trunk/.github/workflows/windows.yml?rev=1920350&r1=1920349&r2=1920350&view=diff
==============================================================================
--- apr/apr/trunk/.github/workflows/windows.yml (original)
+++ apr/apr/trunk/.github/workflows/windows.yml Sun Sep 1 15:01:40 2024
@@ -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 }}