Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Z
ZHAW ET24 Informatik 1
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Severin Sprenger
ZHAW ET24 Informatik 1
Merge requests
!2
Init rats cicd
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Init rats cicd
InitRatsCICD
into
main
Overview
0
Commits
14
Pipelines
1
Changes
1
Merged
Severin Sprenger
requested to merge
InitRatsCICD
into
main
4 months ago
Overview
0
Commits
14
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
f51e7d2a
14 commits,
4 months ago
1 file
+
16
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
16
−
1
Options
stages
:
-
test
lint-job
:
Static code analysis
:
image
:
git.sespra.ch:5050/bakxy/ubuntucppcheck:latest
stage
:
test
script
:
-
rm Template/ -rf
-
cppcheck --xml-version=2 --enable=all --inline-suppr --suppress=missingIncludeSystem . 2> cppcheck-result.xml
-
cppcheck_junit cppcheck-result.xml cppcheck-junit.xml
artifacts
:
@@ -13,3 +14,17 @@ lint-job:
-
cppcheck-junit.xml
reports
:
junit
:
cppcheck-junit.xml
RATS analysis
:
image
:
git.sespra.ch:5050/bakxy/ubuntucppcheck:latest
stage
:
test
script
:
-
rm Template/ -rf
-
rats -l c --xml **/* > rats-output.xml
-
RatsToJunit rats-output.xml rats-output-junit.xml
artifacts
:
when
:
always
paths
:
-
rats-output-junit.xml
reports
:
junit
:
rats-output-junit.xml
Loading