From a0f69291ef87f47526b4958ee1d0b0cab641bc4c Mon Sep 17 00:00:00 2001 From: Timo Koch <timokoch@math.uio.no> Date: Thu, 30 Nov 2023 10:33:36 +0000 Subject: [PATCH] [ci] Temporarily disable cppcheck The cppcheck setup needs to be fixed (too slow with 2.12). This should be enabled again (possibly in different form) when a suitable setup is found. --- .gitlab-ci/default.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.gitlab-ci/default.yml b/.gitlab-ci/default.yml index c218676898..88243ba306 100644 --- a/.gitlab-ci/default.yml +++ b/.gitlab-ci/default.yml @@ -101,18 +101,18 @@ linters: artifacts: true -cppcheck: - stage: linting - script: - - cppcheck --version - - cppcheck -j8 --error-exitcode=1 --inline-suppr -iformat/fmt/ --enable=missingInclude --project=build-cmake/compile_commands.json --suppress=*:*/dune/* --suppress=*:*/fmt/* --suppress=*:*/xml/* --suppress=*:*/json/* - - cppcheck -j8 --error-exitcode=1 --max-configs=1 --inline-suppr -iformat/fmt/ -I ${CI_PROJECT_DIR} --suppress=*:*/dune/* --suppress=*:*/fmt/* --suppress=*:*/xml/* --suppress=*:*/json/* test - - cppcheck -j8 --error-exitcode=1 --max-configs=1 --inline-suppr -iformat/fmt/ -I ${CI_PROJECT_DIR} --suppress=*:*/dune/* --suppress=*:*/fmt/* --suppress=*:*/xml/* --suppress=*:*/json/* examples - needs: - - job: configure - artifacts: true - rules: - - if: $DUMUX_ENABLE_CPPCHECK == "true" +#cppcheck: +# stage: linting +# script: +# - cppcheck --version +# - cppcheck -j8 --error-exitcode=1 --inline-suppr -iformat/fmt/ --enable=missingInclude --project=build-cmake/compile_commands.json --suppress=*:*/dune/* --suppress=*:*/fmt/* --suppress=*:*/xml/* --suppress=*:*/json/* +# - cppcheck -j8 --error-exitcode=1 --max-configs=1 --inline-suppr -iformat/fmt/ -I ${CI_PROJECT_DIR} --suppress=*:*/dune/* --suppress=*:*/fmt/* --suppress=*:*/xml/* --suppress=*:*/json/* test +# - cppcheck -j8 --error-exitcode=1 --max-configs=1 --inline-suppr -iformat/fmt/ -I ${CI_PROJECT_DIR} --suppress=*:*/dune/* --suppress=*:*/fmt/* --suppress=*:*/xml/* --suppress=*:*/json/* examples +# needs: +# - job: configure +# artifacts: true +# rules: +# - if: $DUMUX_ENABLE_CPPCHECK == "true" reuse: -- GitLab