Skip to content
Snippets Groups Projects
Commit 9314ba63 authored by Soeren Peters's avatar Soeren Peters
Browse files

Remove the allow_failure for lizard.

parent 75c999b3
No related branches found
No related tags found
1 merge request!31Always rebuild gcc and clang.
......@@ -250,12 +250,12 @@ cppcheck:
###############################################################################
# lizard - Cyclomatic Complexity Analyzer
# Allow failure for this job, as lizard is failing when warnings are found.
# Ignore warnings is manually set to 400, as we do not want this job to fail.
lizard:
stage: analyze
# only:
# - open_source@irmb/VirtualFluids_dev
only:
- open_source@irmb/VirtualFluids_dev
image: irmb/virtualfluids-python-deps-ubuntu20.04
......@@ -270,14 +270,12 @@ lizard:
script:
- cd $CI_PROJECT_DIR
- lizard -l cpp src/ > lizard.txt --warnings_only
- lizard -l cpp src/ > lizard.txt --warnings_only --ignore_warnings 400
artifacts:
paths:
- lizard.txt
allow_failure: true
###############################################################################
# code coverage
gcov_gcc_9:
......
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