Skip to content
Snippets Groups Projects
Commit c4de7bd5 authored by Loic Hausammann's avatar Loic Hausammann
Browse files

Merge branch 'add_badges' into 'master'

Add badges

See merge request !30
parents 3e2e22bf c4735ec2
Branches
Tags
1 merge request!30Add badges
......@@ -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 {
......
[![pipeline status](https://gitlab.cosma.dur.ac.uk/lhausammann/csds-reader/badges/master/pipeline.svg)](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
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment