Author: ivan
Date: Fri Jul 5 17:05:09 2024
New Revision: 1918945
URL: http://svn.apache.org/viewvc?rev=1918945&view=rev
Log:
* .github/workflows/windows-cmake.yml: Use C:/vcpkg/installed/${{
matrix.triplet }}
as CMAKE_INSTALL_PREFIX.
Modified:
serf/trunk/.github/workflows/windows-cmake.yml
Modified: serf/trunk/.github/workflows/windows-cmake.yml
URL:
http://svn.apache.org/viewvc/serf/trunk/.github/workflows/windows-cmake.yml?rev=1918945&r1=1918944&r2=1918945&view=diff
==============================================================================
--- serf/trunk/.github/workflows/windows-cmake.yml (original)
+++ serf/trunk/.github/workflows/windows-cmake.yml Fri Jul 5 17:05:09 2024
@@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@v3
- name: Configure CMake
- run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{
matrix.build-type }} -G "${{ matrix.generator }}"
-DCMAKE_INSTALL_PREFIX=C:/vcpkg/installed
+ run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{
matrix.build-type }} -G "${{ matrix.generator }}"
-DCMAKE_INSTALL_PREFIX=C:/vcpkg/installed/${{ matrix.triplet }}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{
matrix.build-type }}