diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 18:42:36 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 18:42:36 +0000 |
commit | f3cd649313063ef9d72a3a4a0ab5b4af598c8c9f (patch) | |
tree | 47e771e246377a3ee1211bdb2238e090970d6c24 /.gitlab-ci.yml | |
parent | Releasing progress-linux version 1.22.5-0.0~progress7.99u1. (diff) | |
download | dpkg-f3cd649313063ef9d72a3a4a0ab5b4af598c8c9f.tar.xz dpkg-f3cd649313063ef9d72a3a4a0ab5b4af598c8c9f.zip |
Merging upstream version 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 |