From 5b9ec53bf86ede492d88f4e7513df511e46e7654 Mon Sep 17 00:00:00 2001 From: George Kiagiadakis Date: Wed, 16 Feb 2022 18:10:52 +0200 Subject: [PATCH] gitlab-ci: rebuild fedora & coverity images to update coverity coverity's latest version (2021.12) works fine with fedora's gcc, so that should fix the failures we are currently observing --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a2737edfb..fe5181498 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,7 +25,7 @@ include: .fedora: variables: # Update this tag when you want to trigger a rebuild - FDO_DISTRIBUTION_TAG: '2022-01-28.0' + FDO_DISTRIBUTION_TAG: '2022-02-16.0' FDO_DISTRIBUTION_VERSION: '35' FDO_DISTRIBUTION_PACKAGES: >- alsa-lib-devel @@ -142,7 +142,7 @@ include: FDO_DISTRIBUTION_EXEC: >- mkdir -p /opt ; cd /opt ; - curl -o /tmp/cov-analysis-linux64.tgz https://scan.coverity.com/download/linux64 + curl -o /tmp/cov-analysis-linux64.tgz https://scan.coverity.com/download/cxx/linux64 --form project=$COVERITY_SCAN_PROJECT_NAME --form token=$COVERITY_SCAN_TOKEN ; tar xf /tmp/cov-analysis-linux64.tgz ; mv cov-analysis-linux64-* coverity ;