Commit 25990b0
authored
* Fix Windows/MSYS2/MinGW64 build failures (issue #280)
Add MSYS environment support to configure.ac so users building from the
MSYS shell get proper Windows configuration (winsock2.h, ws2_32 lib)
instead of falling through to the Unix case (arpa/inet.h).
Changes:
- configure.ac: Add *-msys* case with Windows config and warning about
msys-2.0.dll dependency
- configure.ac: Add host triplet and Windows build status to summary
- appveyor.yml: Add MSYS environment to CI matrix alongside MinGW64
- README.md: Add Windows/MSYS2 build section with step-by-step
instructions and explanation of shell differences
* Migrate Windows CI from AppVeyor to GitHub Actions
Integrate Windows/MSYS2 builds into the existing verify job matrix
instead of using a separate AppVeyor configuration. This consolidates
all CI into GitHub Actions.
- Add MINGW64 and MSYS matrix entries with msys2 shell
- Add MSYS2 setup and package installation steps
- Add Windows-specific libmicrohttpd build with --enable-poll=no
- Remove AppVeyor configuration and badge
* Fix missing shell parameter in matrix include entries
Include entries don't inherit matrix defaults, so each needs an
explicit shell value to work with the defaults.run.shell setting.
* Fix shell for steps that run before MSYS2 setup
The git checkout and failure-handling steps need explicit shell: bash
since they may run before MSYS2 is set up or if MSYS2 setup fails.
* Fix MSYS package: use libcurl-devel for test headers
The curl package doesn't include development headers needed for
compiling tests. Use libcurl-devel which provides curl/curl.h.
* Fix MSYS package: add libgnutls-devel for SSL tests
The SSL tests (ssl_base, ssl_with_protocol_priorities, ssl_with_trust)
were failing because GnuTLS wasn't installed in the MSYS environment.
1 parent 53bded0 commit 25990b0
File tree
4 files changed
+147
-30
lines changed- .github/workflows
4 files changed
+147
-30
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
23 | 26 | | |
24 | 27 | | |
25 | 28 | | |
| |||
33 | 36 | | |
34 | 37 | | |
35 | 38 | | |
| 39 | + | |
36 | 40 | | |
37 | 41 | | |
38 | 42 | | |
| |||
62 | 66 | | |
63 | 67 | | |
64 | 68 | | |
| 69 | + | |
65 | 70 | | |
66 | 71 | | |
67 | 72 | | |
| |||
82 | 87 | | |
83 | 88 | | |
84 | 89 | | |
| 90 | + | |
85 | 91 | | |
86 | 92 | | |
87 | 93 | | |
| |||
91 | 97 | | |
92 | 98 | | |
93 | 99 | | |
| 100 | + | |
94 | 101 | | |
95 | 102 | | |
96 | 103 | | |
| |||
100 | 107 | | |
101 | 108 | | |
102 | 109 | | |
| 110 | + | |
103 | 111 | | |
104 | 112 | | |
105 | 113 | | |
| |||
109 | 117 | | |
110 | 118 | | |
111 | 119 | | |
| 120 | + | |
112 | 121 | | |
113 | 122 | | |
114 | 123 | | |
| |||
118 | 127 | | |
119 | 128 | | |
120 | 129 | | |
| 130 | + | |
121 | 131 | | |
122 | 132 | | |
123 | 133 | | |
| |||
127 | 137 | | |
128 | 138 | | |
129 | 139 | | |
| 140 | + | |
130 | 141 | | |
131 | 142 | | |
132 | 143 | | |
| |||
136 | 147 | | |
137 | 148 | | |
138 | 149 | | |
| 150 | + | |
139 | 151 | | |
140 | 152 | | |
141 | 153 | | |
| |||
145 | 157 | | |
146 | 158 | | |
147 | 159 | | |
| 160 | + | |
148 | 161 | | |
149 | 162 | | |
150 | 163 | | |
| |||
154 | 167 | | |
155 | 168 | | |
156 | 169 | | |
| 170 | + | |
157 | 171 | | |
158 | 172 | | |
159 | 173 | | |
| |||
163 | 177 | | |
164 | 178 | | |
165 | 179 | | |
| 180 | + | |
166 | 181 | | |
167 | 182 | | |
168 | 183 | | |
| |||
172 | 187 | | |
173 | 188 | | |
174 | 189 | | |
| 190 | + | |
175 | 191 | | |
176 | 192 | | |
177 | 193 | | |
| |||
181 | 197 | | |
182 | 198 | | |
183 | 199 | | |
| 200 | + | |
184 | 201 | | |
185 | 202 | | |
186 | 203 | | |
| |||
190 | 207 | | |
191 | 208 | | |
192 | 209 | | |
| 210 | + | |
193 | 211 | | |
194 | 212 | | |
195 | 213 | | |
| |||
199 | 217 | | |
200 | 218 | | |
201 | 219 | | |
| 220 | + | |
202 | 221 | | |
203 | 222 | | |
204 | 223 | | |
| |||
208 | 227 | | |
209 | 228 | | |
210 | 229 | | |
| 230 | + | |
211 | 231 | | |
212 | 232 | | |
213 | 233 | | |
| |||
217 | 237 | | |
218 | 238 | | |
219 | 239 | | |
| 240 | + | |
220 | 241 | | |
221 | 242 | | |
222 | 243 | | |
| |||
226 | 247 | | |
227 | 248 | | |
228 | 249 | | |
| 250 | + | |
229 | 251 | | |
230 | 252 | | |
231 | 253 | | |
| |||
235 | 257 | | |
236 | 258 | | |
237 | 259 | | |
| 260 | + | |
238 | 261 | | |
239 | 262 | | |
240 | 263 | | |
| |||
244 | 267 | | |
245 | 268 | | |
246 | 269 | | |
| 270 | + | |
247 | 271 | | |
248 | 272 | | |
249 | 273 | | |
| |||
253 | 277 | | |
254 | 278 | | |
255 | 279 | | |
| 280 | + | |
256 | 281 | | |
257 | 282 | | |
258 | 283 | | |
| |||
262 | 287 | | |
263 | 288 | | |
264 | 289 | | |
| 290 | + | |
265 | 291 | | |
266 | 292 | | |
267 | 293 | | |
| |||
271 | 297 | | |
272 | 298 | | |
273 | 299 | | |
| 300 | + | |
| 301 | + | |
| 302 | + | |
| 303 | + | |
| 304 | + | |
| 305 | + | |
| 306 | + | |
| 307 | + | |
| 308 | + | |
| 309 | + | |
| 310 | + | |
| 311 | + | |
| 312 | + | |
| 313 | + | |
| 314 | + | |
| 315 | + | |
| 316 | + | |
| 317 | + | |
| 318 | + | |
| 319 | + | |
| 320 | + | |
| 321 | + | |
| 322 | + | |
| 323 | + | |
| 324 | + | |
274 | 325 | | |
275 | 326 | | |
276 | 327 | | |
| |||
282 | 333 | | |
283 | 334 | | |
284 | 335 | | |
| 336 | + | |
285 | 337 | | |
286 | | - | |
| 338 | + | |
| 339 | + | |
| 340 | + | |
| 341 | + | |
| 342 | + | |
| 343 | + | |
| 344 | + | |
| 345 | + | |
| 346 | + | |
| 347 | + | |
| 348 | + | |
| 349 | + | |
| 350 | + | |
| 351 | + | |
| 352 | + | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
| 357 | + | |
| 358 | + | |
287 | 359 | | |
288 | 360 | | |
289 | 361 | | |
| |||
395 | 467 | | |
396 | 468 | | |
397 | 469 | | |
| 470 | + | |
398 | 471 | | |
399 | 472 | | |
400 | 473 | | |
| |||
403 | 476 | | |
404 | 477 | | |
405 | 478 | | |
406 | | - | |
| 479 | + | |
407 | 480 | | |
408 | 481 | | |
409 | 482 | | |
| 483 | + | |
| 484 | + | |
| 485 | + | |
| 486 | + | |
| 487 | + | |
| 488 | + | |
| 489 | + | |
| 490 | + | |
| 491 | + | |
| 492 | + | |
| 493 | + | |
410 | 494 | | |
411 | 495 | | |
412 | 496 | | |
| |||
449 | 533 | | |
450 | 534 | | |
451 | 535 | | |
| 536 | + | |
452 | 537 | | |
453 | 538 | | |
454 | 539 | | |
| |||
486 | 571 | | |
487 | 572 | | |
488 | 573 | | |
| 574 | + | |
489 | 575 | | |
490 | 576 | | |
491 | 577 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
14 | 13 | | |
15 | 14 | | |
16 | 15 | | |
| |||
119 | 118 | | |
120 | 119 | | |
121 | 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 | + | |
122 | 168 | | |
123 | 169 | | |
124 | 170 | | |
| |||
This file was deleted.
0 commit comments