diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 18:42:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 18:42:28 +0000 |
commit | 33a2bb70562ae87235c9be95722a963129a13a38 (patch) | |
tree | 15839c3590b802065af623ef71fce4f75f561eed /.gitlab-ci.yml | |
parent | Adding upstream version 1.22.5. (diff) | |
download | dpkg-33a2bb70562ae87235c9be95722a963129a13a38.tar.xz dpkg-33a2bb70562ae87235c9be95722a963129a13a38.zip |
Adding upstream version 1.22.6.upstream/1.22.6
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3a45c0d..b21e089 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -43,6 +43,20 @@ vpath-tests: - make -j$(nproc) check TESTSUITEFLAGS=--verbose TEST_PARALLEL=$(nproc) +# Test whether the unit tests pass with minimal library dependencies. +minlib-tests: + stage: test + script: + - ./configure + --without-liblzma + --without-libz + --without-libz-ng + --without-libzstd + --without-libbz2 + --without-libselinux + - make -j$(nproc) check + TESTSUITEFLAGS=--verbose TEST_PARALLEL=$(nproc) + # Test whether we can build the shared library. shlib-tests: stage: test |