Warning, /graphics/krita/build-tools/ci-scripts/cppcheck.yml is written in an unsupported language. File is not indexed.

0001 cppcheck:
0002   stage: build
0003   image: invent-registry.kde.org/sysadmin/ci-images/krita-appimage-builder:latest
0004   tags:
0005     - Linux
0006   interruptible: true
0007   before_script:
0008     - git clone https://invent.kde.org/sysadmin/ci-utilities
0009   script:
0010     - python3 -u ci-utilities/run-cppcheck.py --project $CI_PROJECT_NAME --branch $CI_COMMIT_REF_NAME
0011   rules:
0012     - changes:
0013       - "**/*.c"
0014       - "**/*.h"
0015       - "**/*.cc"
0016       - "**/*.hh"
0017       - "**/*.cpp"
0018       - "**/*.hpp"
0019       - "**/*.cxx"
0020       - "**/*.hxx"
0021       - "**/*.ii"
0022       - "**/*.ipp"
0023       - "**/*.ixx"
0024   artifacts:
0025     paths:
0026       - "cppcheck_out.xml"
0027     expire_in: 1 week
0028     when: on_success
0029     reports:
0030       codequality: cppcheck.json