forked from openldap/openldap
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.gitlab-ci.yml
48 lines (45 loc) · 1.68 KB
/
.gitlab-ci.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
stages:
- build
build-no-threads-no-slapd:
stage: build
script:
- apt update
- DEBIAN_FRONTEND=noninteractive apt install -y build-essential autoconf groff-base libsasl2-dev libssl-dev
- autoreconf
- ./configure --without-threads --disable-slapd
- make depend
- make
build-openssl-heimdal:
stage: build
script:
- apt update
- DEBIAN_FRONTEND=noninteractive apt install -y build-essential pkg-config automake libsasl2-dev heimdal-multidev libssl-dev libltdl-dev groff-base unixodbc-dev libwiredtiger-dev libperl-dev heimdal-kdc libsasl2-modules-gssapi-heimdal sasl2-bin
- autoreconf
- ./configure --enable-backends=mod --enable-overlays=mod --enable-modules --enable-dynamic --disable-ndb --disable-asyncmeta
- make depend
- make
- ulimit -n 4096 # back-monitor takes a while scanning a long connections array
- make test
artifacts:
name: testdir
when: on_failure
expire_in: '1 week'
paths:
- tests/testrun/
build-gnutls-mit:
stage: build
script:
- apt update
- DEBIAN_FRONTEND=noninteractive apt install -y build-essential pkg-config automake libsasl2-dev libltdl-dev groff-base unixodbc-dev libwiredtiger-dev libperl-dev krb5-user krb5-kdc krb5-admin-server libsasl2-modules-gssapi-mit sasl2-bin libgnutls28-dev
- autoreconf
- ./configure --enable-backends=mod --enable-overlays=mod --disable-autoca --enable-modules --enable-dynamic --disable-ndb --disable-asyncmeta
- make depend
- make
- ulimit -n 4096 # back-monitor takes a while scanning a long connections array
- make test
artifacts:
name: testdir
when: on_failure
expire_in: '1 week'
paths:
- tests/testrun/