
cppcheck-gitlab-ci/cppcheck-gitlab-ci at master - GitHub
#! /usr/bin/env bash xml_file=$ (mktemp) cppcheck --xml "$@" 2> "$xml_file" cppcheck-codequality --input-file="$xml_file" --output-file=cppcheck.json
c++ - gitlab-ci.yml cpp coverage report - Stack Overflow
May 10, 2018 · I am trying to implement CI using Gitlab for a c++ project. To start with, I added a simple c++ hello world program which compiled and ranfine in both my PC and in Gitlab CI.
Ingesting Cppcheck and Fortify findings into GitLab
Aug 14, 2024 · I am looking for examples of parsing CppCheck and Fortify XML reports into the GitLab SAST report schema. Specifically, I am looking to see how people populate the "Identifiers" array in ...
GitHub - kzwrime/gitlab-cmake-ci: Modern Cmake C++ project example …
About Modern Cmake C++ project example, with codespell, cmake, cpppcheck clang-format clang-tidy lcov gcovr support.
GitHub - ainfosec/ci_helloworld: A simple example of how to …
This repo provides a simple example for how to setup various CI services as well as integrating analysis tools into these services. These tools should be used as part of a comprehensive Software Development Process (SDP) and can also be used as a starting template for any C or C++ application.
.gitlab-ci.yml · master · Josh Lin / cpp-ci-cppcheck · GitLab
CI for C++ projects using cppcheck
gitlabci_gallery / pipelines / cmake_googletest_cppcheck · GitLab
Jan 9, 2023 · Simple example of pipelines with two stages. Keywords: gitlabci, c++, cmake, static analysis, cppcheck, googletest
gitlab-ci/cppcheck.bash at master · chumkaska/gitlab-ci · GitHub
#!/bin/bash pattern='\. (c|cpp|cc|cxx|h|hpp)$' changed_files=$ (git diff --name-only origin/$ {CI_MERGE_REQUEST_TARGET_BRANCH_NAME} | grep -E $pattern) echo …
.gitlab-ci.yml · 2511aa91bf25cdfdaeb69e555c3a0c1480181c57 · …
Jul 20, 2017 · CI for C++ projects using cppcheck
cppcheck with gitlab runner as shell script : r/gitlab - Reddit
Mar 1, 2023 · I have a project in C++ I would like to run the cppcheck on my code just on the changed file and not on the full code base. Can someone suggest me the correct syntax for the gitlab yaml file? alternative way from: https://stackoverflow.com/questions/52908263/how-to-list-the-modified-files.
- Some results have been removed