svn commit: r1920634 - /apr/apr-util/branches/1.7.x/.github/workflows/windows.yml
| Newsgroups | gmane.comp.apache.apr.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: ivan
Date: Sat Sep 14 15:12:36 2024
New Revision: 1920634
URL: http://svn.apache.org/viewvc?rev=1920634&view=rev
Log:
.github/workflows/windows.yml: Add test matrix for shared build without DSO.
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=1920634&r1=1920633&r2=1920634&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 Sat Sep 14 15:12:36 2024
@@ -19,6 +19,15 @@ jobs:
build-type: Debug
generator: Ninja
build-shared: ON
+ dso-build: ON
+ - name: Shared (no DSO)
+ os: windows-latest
+ triplet: x64-windows
+ arch: x64
+ build-type: Debug
+ generator: Ninja
+ build-shared: ON
+ dso-build: OFF
- name: Static
os: windows-latest
triplet: x64-windows
@@ -26,6 +35,7 @@ jobs:
build-type: Debug
generator: Ninja
build-shared: OFF
+ dso-build: OFF
fail-fast: false
name: "MSVC ${{ matrix.arch }} [${{ matrix.build-type }}] build-shared=${{ matrix.build-shared }} on ${{ matrix.os }}"
@@ -90,6 +100,7 @@ jobs:
-S ${{github.workspace}}/apu ^
-DCMAKE_BUILD_TYPE=${{ matrix.build-type }} ^
-DBUILD_SHARED_LIBS=${{ matrix.build-shared }} ^
+ -DAPU_DSO_BUILD=${{ matrix.dso-build }} ^
-DAPR_BUILD_TESTAPR=ON ^
-DAPR_HAS_LDAP=OFF ^
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake ^