svn commit: r1920685 - /apr/apr/trunk/.github/workflows/windows.yml
| Newsgroups | gmane.comp.apache.apr.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: ivan
Date: Sun Sep 15 14:52:15 2024
New Revision: 1920685
URL: http://svn.apache.org/viewvc?rev=1920685&view=rev
Log:
.github/workflows/windows.yml: Build all features in static job.
Modified:
apr/apr/trunk/.github/workflows/windows.yml
Modified: apr/apr/trunk/.github/workflows/windows.yml
URL: http://svn.apache.org/viewvc/apr/apr/trunk/.github/workflows/windows.yml?rev=1920685&r1=1920684&r2=1920685&view=diff
==============================================================================
--- apr/apr/trunk/.github/workflows/windows.yml (original)
+++ apr/apr/trunk/.github/workflows/windows.yml Sun Sep 15 14:52:15 2024
@@ -87,21 +87,21 @@ jobs:
-DAPU_HAVE_ODBC=OFF
-DAPU_HAVE_SQLITE3=OFF
-DAPU_HAVE_CRYPTO=OFF
- - name: ODBC + Sqlite3 + Crypto + Iconv
+ - name: "Shared: All (ODBC + Sqlite3 + Crypto + Iconv)"
os: windows-latest
triplet: x64-windows
arch: x64
build-type: Debug
generator: Ninja
build-shared: ON
- dso-build: OFF
+ dso-build: ON
packages: sqlite3 openssl libiconv
config: >-
-DAPU_HAVE_ODBC=ON
-DAPU_HAVE_SQLITE3=ON
-DAPU_HAVE_CRYPTO=ON
-DAPU_HAVE_ICONV=ON
- - name: Static
+ - name: "Static: All (ODBC + Sqlite3 + Crypto + Iconv)"
os: windows-latest
triplet: x64-windows-static
arch: x64
@@ -109,6 +109,12 @@ jobs:
generator: Ninja
build-shared: OFF
dso-build: OFF
+ packages: sqlite3 openssl libiconv
+ config: >-
+ -DAPU_HAVE_ODBC=ON
+ -DAPU_HAVE_SQLITE3=ON
+ -DAPU_HAVE_CRYPTO=ON
+ -DAPU_HAVE_ICONV=ON
fail-fast: false
name: ${{ matrix.name }}