mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
20 lines
581 B
YAML
20 lines
581 B
YAML
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/
|