libmicrohttpd

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

commit 9d3187cfc185946411ea79f96bac7d9a12fdd1a7
parent 5acd08c5c66720c1f96899bebc24d2a51d2192e7
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Sun,  5 Sep 2021 15:31:41 +0300

.gitlab-ci: added "keep-going" for "check" jobs

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml @@ -38,8 +38,7 @@ gcc/Stretch: - export CFLAGS="$CFLAGS_DEFAULT" - ./bootstrap - ./configure $CONFIGURE_BASE_FLAGS - - make -j$(nproc) - - make check + - make -j$(nproc) && make -k check tags: - shared - linux @@ -63,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-sanitizers - - make check + - make -j$(nproc) && make -k check tags: - shared - linux @@ -82,7 +81,7 @@ Scan-Build/Debian: - ./bootstrap - scan-build ./configure $CONFIGURE_BASE_FLAGS - scan-build -v -enable-checker security,nullability --status-bugs -o scan-build make -j$(nproc) - - scan-build -v -enable-checker security,nullability --status-bugs -o scan-build make check + - scan-build -v -enable-checker security,nullability --status-bugs -o scan-build make -k check tags: - shared - linux