From 01f5516284ff66c9a30dd7df29518472542b78fc Mon Sep 17 00:00:00 2001 From: Nicolas Pope <nicolas.pope@utu.fi> Date: Sat, 7 May 2022 09:06:26 +0100 Subject: [PATCH] Add pip --- .gitlab-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ae8aa99..c0076f6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,13 +21,16 @@ image: ubuntu:jammy code_quality: stage: test + allow_failure: true + needs: [] + dependencies: [] only: - main - merge_requests tags: - docker script: - - DEBIAN_FRONTEND=noninteractive apt update && apt install -y python3 cppcheck + - DEBIAN_FRONTEND=noninteractive 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=*:*json.hpp ./ 2> cppcheck_out.xml - cppcheck-codequality --input-file=cppcheck_out.xml --output-file=cppcheck.json -- GitLab