Skip to content
Snippets Groups Projects
Commit 585786d4 authored by Tigran Mkrtchyan's avatar Tigran Mkrtchyan :coffee: Committed by Michael Davis
Browse files

gitlab: add cppcheck static code analysis

parent cb475206
No related branches found
No related tags found
No related merge requests found
stages:
- build:srpm
- build:rpm
- analysis:check
- analysis:report
- build:dockerimage
- test
- regressions
......@@ -348,3 +350,27 @@ trigger_doc_update:
project: CTA/eoscta-docs
strategy: depend
cppcheck:
stage: analysis:check
image:
name: neszt/cppcheck-docker
entrypoint: ["/usr/bin/env"]
script:
- cppcheck --xml --enable=warning,performance . 2> cppcheck_out.xml
artifacts:
expire_in: 2 days
paths:
- cppcheck_out.xml
# based on https://gitlab.com/ahogen/cppcheck-codequality
cppcheck_report:
stage: analysis:report
image: centos:7
script:
- yum -y install python3-pip
- python3 -m pip install -U cppcheck_codequality
- cppcheck-codequality --input-file=cppcheck_out.xml --output-file=cppcheck.json
artifacts:
reports:
codequality: cppcheck.json
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment