From: Nikos Mavrogiannopoulos Date: Thu, 10 Oct 2019 15:49:01 +0000 (+0200) Subject: .gitlab-ci.yml: removed coverity build [ci skip] X-Git-Tag: gnutls_3_6_11~33^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bceeee452c5ecf1dc2a98597236fbceb85af68e2;p=thirdparty%2Fgnutls.git .gitlab-ci.yml: removed coverity build [ci skip] The coverity run is subject to several restrictions by the service, and thus it is not really useful in the main CI runs as it cannot reasonably be run on MRs or master. As such we simplify the main CI file by moving the coverity to the coverage sub-project and running it weekly. The new location is at: https://gitlab.com/gnutls/coverage Signed-off-by: Nikos Mavrogiannopoulos --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 134b29fe0a..2944531f36 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -308,30 +308,6 @@ static-analyzers.Fedora.x86_64: - scan-build-libdane/* retry: 1 -coverity: - stage: stage1-testing - image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD - script: - - wget https://scan.coverity.com/download/linux64 --post-data "token=$COVERITY_SCAN_TOKEN&project=$COVERITY_SCAN_PROJECT_NAME" -O /tmp/coverity_tool.tgz - - tar xfz /tmp/coverity_tool.tgz - - ./bootstrap - - CFLAGS="-g -Og" dash ./configure --disable-gcc-warnings --cache-file cache/config.cache --disable-guile --disable-maintainer-mode --disable-doc - - cov-analysis-linux64-*/bin/cov-build --dir cov-int make -j$(nproc) - - tar cfz cov-int.tar.gz cov-int - - curl https://scan.coverity.com/builds?project=$COVERITY_SCAN_PROJECT_NAME - --form token=$COVERITY_SCAN_TOKEN --form email=n.mavrogiannopoulos@gmail.com - --form file=@cov-int.tar.gz --form version="`git describe --tags`" - --form description="CI build" - tags: - - shared - only: - - /^gnutls_3_6_.*$/@gnutls/gnutls - artifacts: - expire_in: 1 week - when: on_failure - paths: - - cov-int/*.txt - MinGW32.DLLs: stage: stage1-testing image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD