summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2019-10-10 17:49:01 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2019-10-10 17:51:02 +0200
commitbceeee452c5ecf1dc2a98597236fbceb85af68e2 (patch)
treea5627ab0c7a2b13538b30af14836bf6391b91d89
parent11f80530f209d0cf410a7ed5960f8bec8a4d27aa (diff)
downloadgnutls-bceeee452c5ecf1dc2a98597236fbceb85af68e2.tar.gz
.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 <nmav@redhat.com>
-rw-r--r--.gitlab-ci.yml24
1 files changed, 0 insertions, 24 deletions
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