mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
ITS#6207 Add GitLab CI
This commit is contained in:
parent
6d9e9e6cb0
commit
e0c80d6b09
1 changed files with 19 additions and 0 deletions
19
.gitlab-ci.yml
Normal file
19
.gitlab-ci.yml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
stages:
|
||||
- build
|
||||
|
||||
build:
|
||||
stage: build
|
||||
script:
|
||||
- apt update
|
||||
- apt install -y build-essential pkg-config automake libsasl2-dev heimdal-multidev libssl-dev libltdl-dev groff-base unixodbc-dev libwiredtiger-dev libperl-dev
|
||||
- ./configure --enable-backends=mod --enable-overlays=mod --enable-modules --enable-dynamic --disable-ndb
|
||||
- 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/
|
||||
Loading…
Reference in a new issue