-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJenkinsfile
63 lines (62 loc) · 1.67 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
pipeline {
agent {
dockerfile {
filename 'Dockerfile.build'
additionalBuildArgs '--pull'
reuseNode true
}
}
stages {
stage('openmpi gcc debug') {
steps {
sh '''
source /etc/profile.d/modules.sh
module load mpi/openmpi-x86_64
if [ ! -d "build" ]; then
mkdir build;
fi
cd build
cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_COVERAGE=1 ..
make all -j3
ctest
'''
}
post{
success{
sh '''
cd build
make coverage
gcovr --xml --output coverage.xml
cobertura autoUpdateHealth: false,
autoUpdateStability: false,
coberturaReportFile: 'build/coverage.xml',
conditionalCoverageTargets: '70, 79, 80',
failUnhealthy: false,
failUnstable: false,
lineCoverageTargets: '80, 79, 80',
maxNumberOfBuilds: 0,
methodCoverageTargets: '80, 79, 80',
onlyStable: false,
sourceEncoding: 'ASCII',
zoomCoverageChart: false
'''
}
}
}
stage('openmpi gcc release') {
steps {
sh '''
source /etc/profile.d/modules.sh
module load mpi/openmpi-x86_64
if [ ! -d "build" ]; then
mkdir build;
fi
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make all -j3
ctest
'''
}
}
}
}