blob: ac39b7c4976de1274bca0652ac1f0d0b6c540131 (
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
|
Build minimal:
script:
- git submodule update --init && make autoreconf && ./configure --with-included-libtasn1
--disable-doc --disable-dtls-srtp-support --disable-alpn-support --disable-rsa-export
--disable-heartbeat-support --disable-srp-authentication --disable-psk-authentication
--disable-anon-authentication --disable-dhe --disable-ecdhe --disable-openpgp-authentication
--disable-ocsp --disable-session-tickets --disable-openssl-compatibility --disable-non-suiteb-curves
--disable-nls --disable-crywrap --disable-libdane --without-p11-kit --without-tpm
--without-zlib --disable-doc --disable-tests && make -j4
tags:
- fast
except:
- tags
Build and Check with valgrind:
script:
- git submodule update --init && make autoreconf && ./configure
--disable-non-suiteb-curves --with-included-libtasn1 --disable-doc && make -j4 && make check -j4
- cat tests/test-suite.log
tags:
- fast
except:
- tags
Build and Check with asan:
script:
- git submodule update --init && make autoreconf &&CFLAGS="-fsanitize=address -g
-O2" LDFLAGS="-static-libasan" ./configure --disable-doc --with-included-libtasn1 --disable-valgrind-tests --disable-non-suiteb-curves --disable-guile
&& make -j4 && make check -j4
- cat tests/test-suite.log
tags:
- fast
except:
- tags
Build and Check with separate build dir:
script:
- git submodule update --init && make autoreconf && mkdir -p build && cd build &&
../configure --with-included-libtasn1 --disable-doc --disable-valgrind-tests &&
make -j4 && make check -j4
- cat tests/test-suite.log
tags:
- slow
except:
- tags
|