Author: ivan
Date: Thu Apr 20 11:32:30 2023
New Revision: 1909283
URL: http://svn.apache.org/viewvc?rev=1909283&view=rev
Log:
* .github/workflows/windows-cmake.yml: Use single line syntax.
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=1909283&r1=1909282&r2=1909283&view=diff
==============================================================================
--- serf/trunk/.github/workflows/windows-cmake.yml (original)
+++ serf/trunk/.github/workflows/windows-cmake.yml Thu Apr 20 11:32:30 2023
@@ -30,13 +30,7 @@ jobs:
- uses: actions/checkout@v3
- name: Configure CMake
- run: |
- cmake \
- -B ${{github.workspace}}/build \
- -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} \
- -G "${{ matrix.generator }}" \
- -A ${{ matrix.arch }} \
- -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake
+ run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{
matrix.build-type }} -G "${{ matrix.generator }}" -A ${{ matrix.arch }}
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{
matrix.build-type }}