From a5414507b674e7f83bb1597bc0bf28b8b50db932 Mon Sep 17 00:00:00 2001 From: Ryan Tandy Date: Mon, 18 May 2020 17:51:18 +0000 Subject: [PATCH] ITS#9235 Add CI build without threads --- .gitlab-ci.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8ee98558a0..514e441952 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,17 @@ stages: - build -build1: +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 @@ -19,7 +29,7 @@ build1: paths: - tests/testrun/ -build2: +build-gnutls-mit: stage: build script: - apt update