svn commit: r1920409 - /apr/apr-util/branches/1.7.x/.github/workflows/windows.yml
| Newsgroups | gmane.comp.apache.apr.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: ivan
Date: Mon Sep 2 19:18:40 2024
New Revision: 1920409
URL: http://svn.apache.org/viewvc?rev=1920409&view=rev
Log:
.github/workflows/windows.yml: Wrap long lines.
Modified:
apr/apr-util/branches/1.7.x/.github/workflows/windows.yml
Modified: apr/apr-util/branches/1.7.x/.github/workflows/windows.yml
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.7.x/.github/workflows/windows.yml?rev=1920409&r1=1920408&r2=1920409&view=diff
==============================================================================
--- apr/apr-util/branches/1.7.x/.github/workflows/windows.yml (original)
+++ apr/apr-util/branches/1.7.x/.github/workflows/windows.yml Mon Sep 2 19:18:40 2024
@@ -51,7 +51,12 @@ jobs:
shell: cmd
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=${{ matrix.arch }}
- cmake -B ${{github.workspace}}/apr/out/build -S ${{github.workspace}}/apr -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -G "${{ matrix.generator }}" -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/install
+ cmake -G "${{ matrix.generator }}" ^
+ -B ${{github.workspace}}/apr/out/build ^
+ -S ${{github.workspace}}/apr ^
+ -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} ^
+ -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake ^
+ -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/install
- name: Build APR
shell: cmd
@@ -73,7 +78,15 @@ jobs:
shell: cmd
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=${{ matrix.arch }}
- cmake -B ${{github.workspace}}/apu/build -S ${{github.workspace}}/apu -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -DAPR_BUILD_TESTAPR=ON -DTEST_STATIC_LIBS=${{ matrix.test-static }} -DAPR_HAS_LDAP=OFF -G "${{ matrix.generator }}" -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/install
+ cmake -G "${{ matrix.generator }}" ^
+ -B ${{github.workspace}}/apu/build ^
+ -S ${{github.workspace}}/apu ^
+ -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} ^
+ -DAPR_BUILD_TESTAPR=ON ^
+ -DTEST_STATIC_LIBS=${{ matrix.test-static }} ^
+ -DAPR_HAS_LDAP=OFF ^
+ -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake ^
+ -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/install
- name: Build
# Build your program with the given configuration