From d16f235effc92b9913c1a09c8c8a7fa0a7ea3a2b Mon Sep 17 00:00:00 2001 From: Nicolas Pope <nicolas.pope@utu.fi> Date: Thu, 9 Jun 2022 13:53:37 +0300 Subject: [PATCH] Try again to use ubuntu focal --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b57448d..2b80d2d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,7 +38,7 @@ code_quality: tags: - docker script: - - DEBIAN_FRONTEND=noninteractive TZ="Europe/London" apt update && apt install -y python3 python3-pip cppcheck + - DEBIAN_FRONTEND=noninteractive TZ="Europe/London" ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && apt update && apt install -y python3 python3-pip cppcheck - python3 -m pip install -U cppcheck_codequality - cppcheck --xml --enable=warning,style,performance --std=c++14 --suppress=*:*catch.hpp --suppress=*:*loguru.cpp --suppress=*:*json.hpp ./ 2> cppcheck_out.xml - cppcheck-codequality --input-file=cppcheck_out.xml --output-file=cppcheck.json -- GitLab