-
Notifications
You must be signed in to change notification settings - Fork 62
176 lines (161 loc) · 6.1 KB
/
windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
name: Windows
on:
push:
branches: [ "1.7.x" ]
tags: [ "*" ]
pull_request:
branches: [ "1.7.x" ]
jobs:
build:
strategy:
matrix:
include:
- name: Default
os: windows-latest
triplet: x64-windows
arch: x64
build-type: Debug
generator: Ninja
build-shared: ON
dso-build: ON
packages: expat
- name: Default x86
os: windows-latest
triplet: x86-windows
arch: x86
build-type: Debug
generator: Ninja
build-shared: ON
dso-build: ON
packages: expat
- name: Use Libxml2
os: windows-latest
triplet: x64-windows
arch: x64
build-type: Debug
generator: Ninja
build-shared: ON
dso-build: ON
packages: libxml2
config: >-
-DAPU_USE_EXPAT=OFF
-DAPU_USE_LIBXML2=ON
- name: Shared (no DSO)
os: windows-latest
triplet: x64-windows
arch: x64
build-type: Debug
generator: Ninja
build-shared: ON
dso-build: OFF
packages: expat
- name: Minimal
os: windows-latest
triplet: x64-windows
arch: x64
build-type: Debug
generator: Ninja
build-shared: ON
dso-build: OFF
packages: expat
config: >-
-DAPU_HAVE_ODBC=OFF
-DAPU_HAVE_SQLITE3=OFF
-DAPU_HAVE_CRYPTO=OFF
- name: ODBC + SQLITE3 + CRYPTO
os: windows-latest
triplet: x64-windows
arch: x64
build-type: Debug
generator: Ninja
build-shared: ON
dso-build: OFF
packages: expat sqlite3 openssl
config: >-
-DAPU_HAVE_ODBC=ON
-DAPU_HAVE_SQLITE3=ON
-DAPU_HAVE_CRYPTO=ON
- name: Static
os: windows-latest
triplet: x64-windows-static
arch: x64
build-type: Debug
generator: Ninja
build-shared: OFF
dso-build: OFF
packages: expat
fail-fast: false
name: ${{ matrix.name }}
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
# You can convert this to a matrix build if you need cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ${{ matrix.os }}
env:
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"
steps:
- name: Export GitHub Actions cache environment variables
uses: actions/github-script@v7
with:
script: |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
- name: Install dependencies
run: vcpkg install --triplet ${{ matrix.triplet }} ${{ matrix.packages }}
- uses: actions/checkout@v4
with:
repository: apache/apr
ref: 1.7.x
path: apr
- name: Configure APR
shell: cmd
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=${{ matrix.arch }}
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 ^
-DVCPKG_TARGET_TRIPLET=${{ matrix.triplet }}
- name: Build APR
shell: cmd
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=${{ matrix.arch }}
cmake --build ${{github.workspace}}/apr/out/build --config ${{ matrix.build-type }}
- name: Install APR
shell: cmd
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=${{ matrix.arch }}
cmake --install ${{github.workspace}}/apr/out/build --config ${{ matrix.build-type }}
- uses: actions/checkout@v4
with:
path: apu
- name: Configure CMake
shell: cmd
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=${{ matrix.arch }}
cmake -G "${{ matrix.generator }}" ^
-B ${{github.workspace}}/apu/build ^
-S ${{github.workspace}}/apu ^
-DCMAKE_BUILD_TYPE=${{ matrix.build-type }} ^
-DBUILD_SHARED_LIBS=${{ matrix.build-shared }} ^
-DAPU_DSO_BUILD=${{ matrix.dso-build }} ^
-DAPU_BUILD_TEST=ON ^
-DAPR_HAS_LDAP=OFF ^
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake ^
-DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/install ^
-DVCPKG_TARGET_TRIPLET=${{ matrix.triplet }} ^
${{ matrix.config }}
- name: Build
# Build your program with the given configuration
shell: cmd
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=${{ matrix.arch }}
cmake --build ${{github.workspace}}/apu/build --config ${{ matrix.build-type }}
- name: Test
working-directory: ${{github.workspace}}/apu/build
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest -C ${{ matrix.build-type }} --output-on-failure
- name: Install
run: cmake --install ${{github.workspace}}/apu/build --config ${{ matrix.build-type }}