From fe1bfb349b9783156d0a991f17d026938e1bb975 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Thu, 21 Sep 2023 12:33:46 +0200 Subject: [PATCH] gitlab-ci: Add a "medium" config build Also run CI tests with a build where most modules except a few are disabled. This is the minimum configuration required for libxslt: --with-tree --with-xpath --with-output --with-html Also add --with-threads. --- .gitlab-ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 706903c8..2ccd1430 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,6 +21,13 @@ gcc:minimum: BASE_CONFIG: "--with-minimum" CFLAGS: "-O2" +gcc:medium: + extends: .test + variables: + BASE_CONFIG: "--with-minimum" + CONFIG: "--with-threads --with-tree --with-xpath --with-output --with-html" + CFLAGS: "-O2" + gcc:legacy: extends: .test only: