blob: f7ca699a9e745541c050e0927810c700ae170fa5 (
plain)
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
|
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- 'master'
- '*/ci'
stages:
##########################################
### Linux jobs first
##########################################
- stage: linux
dependsOn: []
jobs:
- job: vanilla
displayName: ubuntu default
timeoutInMinutes: 20
pool:
vmImage: 'ubuntu-latest'
steps:
- script: ./buildconf && ./configure --enable-debug --enable-werror
displayName: 'configure debug'
- script: make
displayName: 'make'
- script: make test-nonflaky
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
- job: disable_ipv6
displayName: ubuntu w/o IPv6
timeoutInMinutes: 20
pool:
vmImage: 'ubuntu-latest'
steps:
- script: ./buildconf && ./configure --disable-ipv6
displayName: 'configure disable ipv6'
- script: make
displayName: 'make'
- script: make test-nonflaky
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
- job: disable_http_smtp_imap
displayName: ubuntu w/o HTTP/SMTP/IMAP
timeoutInMinutes: 20
pool:
vmImage: 'ubuntu-latest'
steps:
- script: ./buildconf && ./configure --disable-http --disable-smtp --disable-imap
displayName: 'configure disable http/smtp/imap'
- script: make
displayName: 'make'
- script: make test-nonflaky
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
- job: disable_thredres
displayName: ubuntu sync resolver
timeoutInMinutes: 20
pool:
vmImage: 'ubuntu-latest'
steps:
- script: ./buildconf && ./configure --disable-threaded-resolver
displayName: 'configure disable threaded-resolver'
- script: make
displayName: 'make'
- script: make test-nonflaky
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
- job: http_only
displayName: ubuntu HTTP only
timeoutInMinutes: 20
pool:
vmImage: 'ubuntu-latest'
steps:
- script: ./buildconf && ./configure --disable-dict --disable-file --disable-ftp --disable-gopher --disable-imap --disable-ldap --disable-pop3 --disable-rtmp --disable-rtsp --disable-scp --disable-sftp --disable-smb --disable-smtp --disable-telnet --disable-tftp
displayName: 'configure disable non-http'
- script: make
displayName: 'make'
- script: make test-nonflaky
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
- stage: linux_torture
dependsOn: linux
jobs:
- job: torture
displayName: ubuntu torture tests
timeoutInMinutes: 50
pool:
vmImage: 'ubuntu-latest'
steps:
- script: sudo apt install libnghttp2-dev
displayName: 'apt install'
- script: ./buildconf && ./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-alt-svc
displayName: 'configure torture'
- script: make
displayName: 'make'
- script: make "TFLAGS=-n -t --shallow=40 '!FTP'" test-nonflaky
displayName: 'torture test'
##########################################
### macOS jobs below
##########################################
- stage: macos
dependsOn: []
jobs:
- job: macos_vanilla
displayName: macos default
timeoutInMinutes: 30
pool:
vmImage: 'macOS-latest'
steps:
- script: brew update && brew install libtool autoconf automake nghttp2 pkg-config
displayName: 'brew install'
- script: ./buildconf && ./configure --enable-debug --enable-werror --without-brotli
displayName: 'configure debug without brotli'
- script: make
displayName: 'make'
- script: make test-nonflaky
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
- job: macos_libssh2
displayName: macos libssh2
timeoutInMinutes: 30
pool:
vmImage: 'macOS-latest'
steps:
- script: brew update && brew install libtool autoconf automake nghttp2 pkg-config libssh2
displayName: 'brew install'
- script: ./buildconf && ./configure --enable-debug --with-libssh2
displayName: 'configure debug with libssh2'
- script: make
displayName: 'make'
- script: make test-nonflaky
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
- job: macos_cmake
displayName: macos cmake openssl
timeoutInMinutes: 20
pool:
vmImage: 'macOS-latest'
steps:
- script: brew update && brew install libtool autoconf automake nghttp2 pkg-config openssl
displayName: 'brew install'
- script: cmake -H. -Bbuild -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DCURL_DISABLE_LDAP=ON -DCURL_DISABLE_LDAPS=ON && cmake --build build
displayName: 'cmake build'
- stage: macos_torture
dependsOn: macos
jobs:
- job: macos_torture
displayName: macos torture
timeoutInMinutes: 50
pool:
vmImage: 'macOS-latest'
steps:
- script: brew update && brew install libtool autoconf automake nghttp2 pkg-config
displayName: 'brew install'
- script: ./buildconf && ./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-alt-svc
displayName: 'configure torture'
- script: make
displayName: 'make'
- script: make "TFLAGS=-n -t --shallow=25 '!FTP'" test-nonflaky
displayName: 'torture test'
##########################################
### Windows jobs below
##########################################
- stage: windows
dependsOn: []
jobs:
- job: windows_msys2_mingw32_debug_openssl
displayName: msys2 mingw32 debug openssl
timeoutInMinutes: 70
pool:
vmImage: 'windows-2019'
container:
image: mback2k/curl-docker-winbuildenv-msys2-mingw32:ltsc2019
env:
MSYSTEM: MINGW32
MSYS2_PATH_TYPE: inherit
TFLAGS: "!323 !1056 !1299"
steps:
- script: C:\msys64\usr\bin\sh -l -c "cd $(echo '%cd%') && ./buildconf && ./configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 --enable-debug --enable-werror"
displayName: 'configure debug'
- script: C:\msys64\usr\bin\sh -l -c "cd $(echo '%cd%') && make"
displayName: 'make'
- script: C:\msys64\usr\bin\sh -l -c "cd $(echo '%cd%') && make test-nonflaky"
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
- job: windows_msys2_mingw64_debug_openssl
displayName: msys2 mingw64 debug openssl
timeoutInMinutes: 70
pool:
vmImage: 'windows-2019'
container:
image: mback2k/curl-docker-winbuildenv-msys2-mingw64:ltsc2019
env:
MSYSTEM: MINGW64
MSYS2_PATH_TYPE: inherit
TFLAGS: "!323 !1056 !1299"
steps:
- script: C:\msys64\usr\bin\sh -l -c "cd $(echo '%cd%') && ./buildconf && ./configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --enable-debug --enable-werror"
displayName: 'configure debug'
- script: C:\msys64\usr\bin\sh -l -c "cd $(echo '%cd%') && make"
displayName: 'make'
- script: C:\msys64\usr\bin\sh -l -c "cd $(echo '%cd%') && make test-nonflaky"
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
- job: windows_msys1_mingw_debug_openssl
displayName: msys1 mingw debug openssl
timeoutInMinutes: 70
pool:
vmImage: 'windows-2019'
container:
image: mback2k/curl-docker-winbuildenv-msys1-mingw:ltsc2019
env:
TFLAGS: "!203 !1056 !1143"
steps:
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && ./buildconf && ./configure --host=i686-pc-mingw32 --build=i686-pc-mingw32 --prefix=/mingw --enable-debug"
displayName: 'configure debug'
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && make"
displayName: 'make'
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && make test-nonflaky"
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
- job: windows_msys1_mingw32_debug_openssl
displayName: msys1 mingw32 debug openssl
timeoutInMinutes: 70
pool:
vmImage: 'windows-2019'
container:
image: mback2k/curl-docker-winbuildenv-msys1-mingw32:ltsc2019
env:
TFLAGS: "!203 !1056 !1143 !1299"
steps:
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && ./buildconf && ./configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 --prefix=/mingw32 --enable-debug --enable-werror --without-zlib"
displayName: 'configure debug without zlib'
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && make"
displayName: 'make'
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && make test-nonflaky"
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
- job: windows_msys1_mingw64_debug_openssl
displayName: msys1 mingw64 debug openssl
timeoutInMinutes: 70
pool:
vmImage: 'windows-2019'
container:
image: mback2k/curl-docker-winbuildenv-msys1-mingw64:ltsc2019
env:
TFLAGS: "!203 !1056 !1143 !1299"
steps:
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && ./buildconf && ./configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --prefix=/mingw64 --enable-debug --enable-werror --without-zlib"
displayName: 'configure debug without zlib'
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && make"
displayName: 'make'
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && make test-nonflaky"
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
- job: windows_msys2_mingw32_debug_schannel
displayName: msys2 mingw32 debug schannel
timeoutInMinutes: 70
pool:
vmImage: 'windows-2019'
container:
image: mback2k/curl-docker-winbuildenv-msys2-mingw32:ltsc2019
env:
MSYSTEM: MINGW32
MSYS2_PATH_TYPE: inherit
TFLAGS: "!165 !310 !1013 !1056 !1299 !1448 !2034 !2037 !2041 !2046 !2047 !3000 !3001"
steps:
- script: C:\msys64\usr\bin\sh -l -c "cd $(echo '%cd%') && ./buildconf && ./configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 --enable-debug --enable-werror --enable-sspi --without-ssl --with-schannel --with-winidn"
displayName: 'configure debug with sspi/schannel/winidn'
- script: C:\msys64\usr\bin\sh -l -c "cd $(echo '%cd%') && make"
displayName: 'make'
- script: C:\msys64\usr\bin\sh -l -c "cd $(echo '%cd%') && make test-nonflaky"
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
- job: windows_msys2_mingw64_debug_schannel
displayName: msys2 mingw64 debug schannel
timeoutInMinutes: 70
pool:
vmImage: 'windows-2019'
container:
image: mback2k/curl-docker-winbuildenv-msys2-mingw64:ltsc2019
env:
MSYSTEM: MINGW64
MSYS2_PATH_TYPE: inherit
TFLAGS: "!165 !310 !1013 !1056 !1299 !1448 !2034 !2037 !2041 !2046 !2047 !3000 !3001"
steps:
- script: C:\msys64\usr\bin\sh -l -c "cd $(echo '%cd%') && ./buildconf && ./configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --enable-debug --enable-werror --enable-sspi --without-ssl --with-schannel --with-winidn"
displayName: 'configure debug with sspi/schannel/winidn'
- script: C:\msys64\usr\bin\sh -l -c "cd $(echo '%cd%') && make"
displayName: 'make'
- script: C:\msys64\usr\bin\sh -l -c "cd $(echo '%cd%') && make test-nonflaky"
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
- job: windows_msys1_mingw_debug_schannel
displayName: msys1 mingw debug schannel
timeoutInMinutes: 70
pool:
vmImage: 'windows-2019'
container:
image: mback2k/curl-docker-winbuildenv-msys1-mingw:ltsc2019
env:
TFLAGS: "!203 !305 !310 !311 !312 !313 !404 !1013 !1056 !1143 !2034 !2035 !2037 !2038 !2041 !2042 !2048 !3000 !3001"
steps:
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && ./buildconf && ./configure --host=i686-pc-mingw32 --build=i686-pc-mingw32 --prefix=/mingw --enable-debug --enable-sspi --without-ssl --with-schannel --with-winidn"
displayName: 'configure debug with sspi/schannel/winidn'
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && make"
displayName: 'make'
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && make test-nonflaky"
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
- job: windows_msys1_mingw32_debug_schannel
displayName: msys1 mingw32 debug schannel
timeoutInMinutes: 70
pool:
vmImage: 'windows-2019'
container:
image: mback2k/curl-docker-winbuildenv-msys1-mingw32:ltsc2019
env:
TFLAGS: "!203 !310 !1013 !1056 !1143 !1299 !2034 !2037 !2041 !3000 !3001"
steps:
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && ./buildconf && ./configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 --prefix=/mingw32 --enable-debug --enable-werror --enable-sspi --without-ssl --with-schannel --with-winidn --without-zlib"
displayName: 'configure debug with sspi/schannel/winidn without zlib'
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && make"
displayName: 'make'
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && make test-nonflaky"
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
- job: windows_msys1_mingw64_debug_schannel
displayName: msys1 mingw64 debug schannel
timeoutInMinutes: 70
pool:
vmImage: 'windows-2019'
container:
image: mback2k/curl-docker-winbuildenv-msys1-mingw64:ltsc2019
env:
TFLAGS: "!203 !310 !1013 !1056 !1143 !1299 !2034 !2037 !2041 !3000 !3001"
steps:
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && ./buildconf && ./configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --prefix=/mingw64 --enable-debug --enable-werror --enable-sspi --without-ssl --with-schannel --with-winidn --without-zlib"
displayName: 'configure debug with sspi/schannel/winidn without zlib'
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && make"
displayName: 'make'
- script: C:\MinGW\msys\1.0\bin\sh -l -c "cd $(echo '%cd%') && make test-nonflaky"
displayName: 'test'
env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
|