Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CSDS Reader
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Loic Hausammann
CSDS Reader
Commits
c4de7bd5
Commit
c4de7bd5
authored
4 years ago
by
Loic Hausammann
Browse files
Options
Downloads
Plain Diff
Merge branch 'add_badges' into 'master'
Add badges See merge request
!30
parents
3e2e22bf
c4735ec2
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!30
Add badges
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Jenkinsfile
+6
-1
6 additions, 1 deletion
Jenkinsfile
README.md
+4
-0
4 additions, 0 deletions
README.md
coverage.sh
+1
-1
1 addition, 1 deletion
coverage.sh
with
11 additions
and
2 deletions
Jenkinsfile
+
6
−
1
View file @
c4de7bd5
...
...
@@ -93,6 +93,7 @@ pipeline {
module purge
module load gnu_comp/7.3.0
module load python/3.8.7-C8 # For coverage
module load llvm/10.0.1
export CLANG_FORMAT_CMD="clang-format"
...
...
@@ -103,12 +104,16 @@ pipeline {
make -j 2
./coverage.sh -r -i
make clean
'''
updateGitlabCommitStatus
name:
'Debugging/Coverage'
,
state:
'success'
}
post
{
always
{
step
([
$class
:
'CoberturaPublisher'
,
autoUpdateHealth:
false
,
autoUpdateStability:
false
,
coberturaReportFile:
'coverage.xml'
,
failUnhealthy:
false
,
failUnstable:
false
,
maxNumberOfBuilds:
0
,
onlyStable:
false
,
sourceEncoding:
'ASCII'
,
zoomCoverageChart:
false
])
}
}
}
stage
(
'Intel'
)
{
steps
{
...
...
This diff is collapsed.
Click to expand it.
README.md
+
4
−
0
View file @
c4de7bd5
[

](https://gitlab.cosma.dur.ac.uk/lhausammann/csds-reader/-/commits/master)
# CSDS Reader
The Continuous Simulation Data Stream is a new output system for SWIFT designed to replace the snapshots in simulation using gravity.
This is a submodule of SWIFT containing only the reader.
For details on the coverage, please see https://gitlab.cosma.dur.ac.uk/jenkins/job/CSDS-Pipeline/.
# File Description
...
...
This diff is collapsed.
Click to expand it.
coverage.sh
+
1
−
1
View file @
c4de7bd5
...
...
@@ -23,7 +23,7 @@ function generate() {
}
function
run_integration
()
{
gcovr
--
exclude-directories
src/.libs/
--object-directory
src
gcovr
--
xml-pretty
--exclude-unreachable-branches
--print-summary
-o
coverage.xml
--root
src
/
}
if
[[
$args
==
*
"-c"
*
]]
;
then
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment