laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/28421 )
Change subject: install-coverity: update to 2021.12 ......................................................................
install-coverity: update to 2021.12
Starting in February 2022, coverity stopped to support the old 2019.03 version that we were using. Unfortunately that didn't generate any e-mail notification to the project admins so it remained undetected until now :(
What sucks is that the filename states 2021.12 but then the actual directory created upon extraction is 2021.12.1, meaning our ansible rule breaks. We have to rename the tarball to 2021.12.1 before running the playbook...
Closes: OS#5594 Change-Id: I950834cc2ad70979a53a563610bbc9feef1f5f20 --- M ansible/roles/install-coverity/defaults/main.yml 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: laforge: Looks good to me, approved; Verified
diff --git a/ansible/roles/install-coverity/defaults/main.yml b/ansible/roles/install-coverity/defaults/main.yml index 6b97781..d7a8082 100644 --- a/ansible/roles/install-coverity/defaults/main.yml +++ b/ansible/roles/install-coverity/defaults/main.yml @@ -1,4 +1,4 @@ ---
-coverity_version: 2019.03 +coverity_version: 2021.12.1 coverity_installer_file: "cov-analysis-linux64-{{ coverity_version }}.tar.gz"