Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
radler
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ResearchAndDevelopment
radler
Merge requests
!5
Only include Radler in gcovr output
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Only include Radler in gcovr output
fix-gcovr-output
into
main
Overview
0
Commits
3
Pipelines
23
Changes
1
Merged
Maik Nijhuis
requested to merge
fix-gcovr-output
into
main
2 years ago
Overview
0
Commits
3
Pipelines
23
Changes
1
Expand
0
0
Merge request reports
Viewing commit
68f0855d
Prev
Next
Show latest version
1 file
+
4
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
68f0855d
Only include Radler in gcovr output
· 68f0855d
Maik Nijhuis
authored
2 years ago
.gitlab-ci.common.yml
+
11
−
4
Options
@@ -114,19 +114,26 @@ build-2204:
.test
:
stage
:
test
script
:
-
cd build/
-
ctest -j`nproc` --output-on-failure -T test
-
cd build/
-
ctest -j`nproc` --output-on-failure -T test
test-2004
:
extends
:
.test
needs
:
[
"
versioning"
,
"
build-2004"
]
image
:
$BASE_IMAGE_2004
after_script
:
-
gcovr -j`nproc` -
r .. -e '.*/
external/.*' -e '.*/CompilerIdCXX/.*' -e '.*/test/.*'
-
gcovr -j`nproc` -
e '
external/.*' -e '.*/CompilerIdCXX/.*' -e '.*/test/.*'
build/
test-2204
:
extends
:
.test
needs
:
[
"
versioning"
,
"
build-2204"
]
image
:
$BASE_IMAGE_2204
after_script
:
-
gcovr -j`nproc` -r .. -e '.*/external/.*' -e '.*/CompilerIdCXX/.*' -e '.*/test/.*'
-
mkdir coverage
-
gcovr -j`nproc` -e 'external/.*' -e '.*/CompilerIdCXX/.*' -e '.*/test/.*' --xml coverage.xml --html-details coverage/coverage.html build/
-
tar cfz coverage.tar.gz coverage/
artifacts
:
paths
:
-
coverage.tar.gz
reports
:
cobertura
:
coverage.xml
\ No newline at end of file
Loading