diff options
author | Ivan Zhakov <ivan@apache.org> | 2024-09-30 08:00:31 +0000 |
---|---|---|
committer | Ivan Zhakov <ivan@apache.org> | 2024-09-30 08:00:31 +0000 |
commit | 417cafb1fb62c0c24037de5a6e6f56ccc0a3cad8 (patch) | |
tree | 2df7cc465c3ee86985256b7ade0f1acc7b3e56a4 | |
parent | 691f4c1b903a101b366ed98c977f5dd176a3d4bb (diff) | |
download | apr-417cafb1fb62c0c24037de5a6e6f56ccc0a3cad8.tar.gz apr-417cafb1fb62c0c24037de5a6e6f56ccc0a3cad8.zip |
.github/workflows/windows.yml: Update to use APR_XML_BACKEND configuration
option.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1921030 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | .github/workflows/windows.yml | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 764bb25f5..eaf26a845 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -38,9 +38,7 @@ jobs: dso-build: ON packages: expat config: >- - -DAPU_USE_XMLITE=OFF - -DAPU_USE_EXPAT=ON - -DAPU_USE_LIBXML2=OFF + -DAPR_XML_BACKEND=expat - name: Use Libxml2 os: windows-latest triplet: x64-windows @@ -51,9 +49,7 @@ jobs: dso-build: ON packages: libxml2 config: >- - -DAPU_USE_XMLITE=OFF - -DAPU_USE_EXPAT=OFF - -DAPU_USE_LIBXML2=ON + -DAPR_XML_BACKEND=libxml2 - name: Use XmlLite os: windows-latest triplet: x64-windows @@ -62,11 +58,8 @@ jobs: generator: Ninja build-shared: ON dso-build: ON - packages: libxml2 config: >- - -DAPU_USE_XMLITE=ON - -DAPU_USE_EXPAT=OFF - -DAPU_USE_LIBXML2=OFF + -DAPR_XML_BACKEND=xmllite - name: Shared (no DSO) os: windows-latest triplet: x64-windows |