aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: c2b6810ae4168585ab2a5a28e09b1fe2135f89a1 (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
#***************************************************************************
#                                  _   _ ____  _
#  Project                     ___| | | |  _ \| |
#                             / __| | | | |_) | |
#                            | (__| |_| |  _ <| |___
#                             \___|\___/|_| \_\_____|
#
# Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at https://curl.haxx.se/docs/copyright.html.
#
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
# copies of the Software, and permit persons to whom the Software is
# furnished to do so, under the terms of the COPYING file.
#
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
# KIND, either express or implied.
#
###########################################################################
language: c
os: linux
dist: bionic
cache:
  directories:
  - $HOME/wolfssl-4.4.0-stable
  - $HOME/mesalink-1.0.0
  - $HOME/nghttp2-1.39.2

env:
  global:
  - LD_LIBRARY_PATH=/usr/local/lib

addons:
  apt: &common_apt
    config:
      retries: true
    packages: &common_packages
    - cmake
    - valgrind
    - libev-dev
    - libc-ares-dev
    - g++-8
    - stunnel4
    - libidn2-dev
    - gnutls-bin
    - python-impacket

jobs:
  include:
  - env:
    - T=normal C="--with-gssapi --with-libssh2" CHECKSRC=1
    - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
    addons:
      apt:
        <<: *common_apt
        packages:
        - *common_packages
        - krb5-user
        - libssh2-1-dev
  - env:
    - T=normal C=--with-libssh
    # Avoid bionic, its pre-release libssh version triggers deprecation warnings.
    dist: focal
    addons:
      apt:
        <<: *common_apt
        packages:
        - cmake
        - valgrind
        - libev-dev
        - libc-ares-dev
        - g++-8
        - stunnel4
        - libidn2-dev
        - gnutls-bin
        # The above list is common_packages minus impacket.
        - libssh-dev
  - env:
    - T=normal C="--enable-ares"
    - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
  - env:
    - T=normal C="--enable-mqtt"
  - env:
    - T=normal C="--disable-proxy"
  - env:
    - T=normal C="--disable-verbose" CPPFLAGS="-Wno-variadic-macros" NOTESTS=1
    - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
    addons:
      apt:
        <<: *common_apt
        packages:
        - *common_packages
        - libpsl-dev
        - libbrotli-dev
  - env:
    - T=novalgrind BORINGSSL=yes C="--with-ssl=$HOME/boringssl" LD_LIBRARY_PATH=/home/travis/boringssl/lib:/usr/local/lib
    - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
    before_install:
    - eval "$(gimme stable)"; gimme --list  # Install latest Go (for boringssl)
  - env:
    - T=novalgrind QUICHE="yes" C="--with-ssl=$HOME/quiche/deps/boringssl --with-quiche=$HOME/quiche/target/release --enable-alt-svc" LD_LIBRARY_PATH=$HOME/quiche/target/release:/usr/local/lib
    - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
    before_install:
    - eval "$(gimme stable)"; gimme --list  # Install latest Go (for boringssl)
    addons:
      apt:
        <<: *common_apt
        packages:
        - *common_packages
        - libpsl-dev
        - libbrotli-dev
  - env:
    - T=novalgrind NGTCP2=yes C="--with-ssl=$HOME/ngbuild --with-ngtcp2=$HOME/ngbuild --with-nghttp3=$HOME/ngbuild --enable-alt-svc" NOTESTS=
    - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
    addons:
      apt:
        <<: *common_apt
        packages:
        - *common_packages
        - libpsl-dev
        - libbrotli-dev
  - env:
    - T=novalgrind NGTCP2=yes GNUTLS=yes C="PKG_CONFIG_PATH=$HOME/ngbuild --without-ssl --with-gnutls=$HOME/ngbuild --with-ngtcp2=$HOME/ngbuild --with-nghttp3=$HOME/ngbuild --enable-alt-svc" NOTESTS=
    - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
    addons:
      apt:
        <<: *common_apt
        packages:
        - *common_packages
        - libpsl-dev
        - libbrotli-dev
        - autogen
        - automake
        - autopoint
        - bison
        - gperf
        - libgmp-dev
        - libopts25-dev
        - libp11-kit-dev
        - libtasn1-6-dev
        - nettle-dev
  - env:
    - T=debug-wolfssl C="--with-wolfssl --without-ssl"
    - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
    addons:
      apt:
        <<: *common_apt
        packages:
        - *common_packages
        - libpsl-dev
        - libbrotli-dev
  - env:
    - T=debug-mesalink C="--with-mesalink --without-ssl"
    - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
    addons:
      apt:
        <<: *common_apt
        packages:
        - *common_packages
        - libpsl-dev
        - libbrotli-dev
  - env:
    - T=debug
    - &clang OVERRIDE_CC="CC=clang-9" OVERRIDE_CXX="CXX=clang++-9"
    compiler: clang
    addons:
      apt:
        <<: *common_apt
        packages:
        - &clang_packages [*common_packages, clang-9]
        - libpsl-dev
        - libbrotli-dev
  - env:
    - T=debug C="--enable-alt-svc"
    - *clang
    compiler: clang
    addons:
      apt:
        <<: *common_apt
        packages:
        - *clang_packages
        - libpsl-dev
        - libbrotli-dev
  - env:
    - T=debug C="--with-mbedtls --without-ssl"
    - *clang
    compiler: clang
    addons:
      apt:
        <<: *common_apt
        packages:
        - *clang_packages
        - libpsl-dev
        - libbrotli-dev
        - libmbedtls-dev
  - env:
    - T=debug C="--with-gnutls --without-ssl"
    - *clang
    compiler: clang
    addons:
      apt:
        <<: *common_apt
        packages:
        - *clang_packages
        - libgnutls28-dev
        - libpsl-dev
        - libbrotli-dev
  - env:
    - T=debug C="--with-nss --without-ssl" NOTESTS=1 CPPFLAGS="-isystem /usr/include/nss"
    - *clang
    compiler: clang
    addons:
      apt:
        <<: *common_apt
        packages:
        - *clang_packages
        - libnss3-dev
        - libpsl-dev
        - libbrotli-dev
  - env:
    - T=iconv
    - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
  - env:
    - T=cmake BORINGSSL=yes QUICHE=yes C="-DUSE_QUICHE=1 -DOPENSSL_ROOT_DIR=$HOME/boringssl"
    - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
    - PKG_CONFIG_PATH="$HOME/quiche/target/release"
    before_install:
    - eval "$(gimme stable)"; gimme --list  # Install latest Go (for boringssl)
    addons:
      apt:
        <<: *common_apt
        packages:
        - *common_packages
        - libpsl-dev
        - libbrotli-dev
  - env:
    - T=cmake NGTCP2=yes C="-DUSE_NGTCP2=ON"
    - *clang
    - PKG_CONFIG_PATH="$HOME/ngbuild/lib/pkgconfig"
    compiler: clang
    addons:
      apt:
        <<: *common_apt
        packages:
        - *clang_packages
        - libpsl-dev
        - libbrotli-dev
  - env:
    - T=torture
    - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
    addons:
      apt:
        <<: *common_apt
        packages:
        - *common_packages
        - lcov
        - libpsl-dev
        - libbrotli-dev
        - libssh2-1-dev
  - env:
    - T=distcheck
    - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
    addons:
      apt:
        <<: *common_apt
        packages:
        - *common_packages
        - libpsl-dev
        - libbrotli-dev
  - env:
    - T=fuzzer
    - *clang
    compiler: clang
    addons:
      apt:
        <<: *common_apt
        packages:
        - *clang_packages
        - libpsl-dev
        - libbrotli-dev
  - env:
    - T=tidy
    - *clang
    compiler: clang
    addons:
      apt:
        <<: *common_apt
        packages:
        - *clang_packages
        - clang-tidy-9
        - libpsl-dev
        - libbrotli-dev
  - env:
    - T=scan-build
    - *clang
    compiler: clang
    addons:
      apt:
        <<: *common_apt
        packages:
        - *clang_packages
        - libpsl-dev
        - libbrotli-dev
  - env:
    - T=debug CFLAGS="-fsanitize=address,undefined,signed-integer-overflow -fno-sanitize-recover=undefined,integer -Wformat -Werror=format-security -Werror=array-bounds -g" LDFLAGS="-fsanitize=address,undefined -fno-sanitize-recover=undefined,integer" LIBS="-ldl -lubsan"
    - *clang
    compiler: clang
    addons:
      apt:
        <<: *common_apt
        packages:
        - *clang_packages
        - libpsl-dev
        - libbrotli-dev
  - env:
    - T=debug C="--enable-alt-svc"
    - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
    arch: arm64
    addons:
      apt:
        <<: *common_apt
        packages:
        - *common_packages
        - libpsl-dev
        - libbrotli-dev
        - libev-dev
        - libssl-dev
        - libtool
        - pkg-config
        - zlib1g-dev

before_install:
- export "${OVERRIDE_CC-blank=}"
- export "${OVERRIDE_CXX-blank=}"

install:
- if [ "$T" = "coverage" ]; then pip2 install --user cpp-coveralls; fi

# before_script and script:
# Travis isn't reliable catching errors in inline script commands (#3730).
# Do not add anything here, instead add to the respective script.
before_script:
- ./scripts/travis/before_script.sh || travis_terminate 1
script:
- ./scripts/travis/script.sh || travis_terminate 1

# select branches to avoid testing feature branches twice (as branch and as pull request)
branches:
  only:
  - master
  - /\/ci$/

notifications:
  email: false