Author: ivan
Date: Thu Apr 20 11:40:11 2023
New Revision: 1909284
URL: http://svn.apache.org/viewvc?rev=1909284&view=rev
Log:
* .github/workflows/windows-cmake.yml: Remove arch.
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=1909284&r1=1909283&r2=1909284&view=diff
==============================================================================
--- serf/trunk/.github/workflows/windows-cmake.yml (original)
+++ serf/trunk/.github/workflows/windows-cmake.yml Thu Apr 20 11:40:11 2023
@@ -16,7 +16,6 @@ jobs:
os: [windows-latest]
build-type: [Debug, Release]
generator: [ "Ninja" ]
- arch: [ "Win32", "x64" ]
fail-fast: false
runs-on: ${{ matrix.os }}
@@ -30,7 +29,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 }}"
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{
matrix.build-type }}