Skip to content

Facthunder/cppcheck

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

86 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Docker image for Cppcheck

This project aims to provide a simple Docker image to encapsulate and run a Cppcheck analysis through Docker.

Run Cppcheck

Get latest image

Images are now hosted directly on GitHub:

docker pull ghcr.io/facthunder/cppcheck:latest

Run core checks

Assuming current directory contains the source code to analyze, simply run the following command:

docker run --rm -v ${PWD}:/src ghcr.io/facthunder/cppcheck:latest cppcheck -v --xml --enable=all . 2> report.xml

Run MISRA C 2012 checks

Assuming current directory contains the source code to analyze, simply run the following command:

docker run --rm -v ${PWD}:/src ghcr.io/facthunder/cppcheck:latest cppcheck --dump .; misra.py *.dump 2>report.xml

Or simplier:

docker run --rm -v ${PWD}:/src ghcr.io/facthunder/cppcheck misra

Run CERT checks

Assuming current directory contains the source code to analyze, simply run the following command:

docker run --rm -v ${PWD}:/src ghcr.io/facthunder/cppcheck:latest cppcheck --dump .; cert.py *.dump 2>report.xml

Versions matrix

Here is the versions matrix of the image:

TAG CPPCHECK VERSION BASE IMAGE
latest 2.12.1 python:3.11.5-slim-bookworm
2.12.1 2.12.1 python:3.11.5-slim-bookworm
2.7 2.7 python:3.8.5-slim-buster
2.6 2.6 python:3.8.5-slim-buster
2.5 2.5 python:3.8.5-slim-buster
2.4.1 2.4.1 python:3.8.5-slim-buster
2.4 2.4 python:3.8.5-slim-buster
2.3 2.3 python:3.8.5-slim-buster
2.2 2.2 python:3.8.5-slim-buster
2.1 2.1 python:3.8.5-slim-buster
2.0 2.0 python:3.8.5-slim-buster
1.90 1.90 python:3.8.1-alpine
1.89 1.89 python:3.7.4-alpine
1.88 1.88 python:3.7.4-alpine
1.87 1.87 python:3.7.3-alpine

How to contribute

If you experienced a problem with the plugin please open an issue. Inside this issue please explain us how to reproduce this issue and paste the log.

If you want to do a PR, please put inside of it the reason of this pull request. If this pull request fix an issue please insert the number of the issue or explain inside of the PR how to reproduce this issue.

License

Copyright 2021 Facthunder.

Licensed under the GNU General Public License, Version 3.0