libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit cfc790488d356a47e2424121cafd64b1fc40bfe4
parent e62cd69da842695af952deb61e069c7126e24f53
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Fri, 10 Nov 2023 08:57:56 +0300

.gitlab-ci.yml: removed "keep-going" make flag

Diffstat:
M.gitlab-ci.yml | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml @@ -38,7 +38,7 @@ gcc/Stretch: - export CFLAGS="$CFLAGS_DEFAULT" - ./bootstrap - ./configure $CONFIGURE_BASE_FLAGS --enable-build-type=debug --disable-sanitizers - - make -j$(nproc) && make -k check + - make -j$(nproc) && make check tags: - shared - linux @@ -62,7 +62,7 @@ Sanitizers/Stretch: - export CC="ccache clang" - export ASAN_SYMBOLIZER_PATH=/usr/lib/llvm-3.8/bin/llvm-symbolizer - ./configure $CONFIGURE_BASE_FLAGS --disable-doc --enable-build-type=debug --enable-sanitizers - - make -j$(nproc) && make -k check + - make -j$(nproc) && make check tags: - shared - linux