-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
74 lines (72 loc) · 2.56 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
64
65
66
67
68
69
70
71
72
73
74
pipeline {
agent { label 'CI-W10-Agent'}
options {
buildDiscarder(logRotator(numToKeepStr: '10'))
}
stages {
stage('Build') {
steps {
cmakeBuild buildType: 'Release', cleanBuild: true, installation: 'MSYS', buildDir: 'artifacts', generator: "CodeBlocks - MinGW Makefiles", steps: [[withCmake: true]]
}
post {
failure {
cleanWs()
}
}
}
stage('Test') {
steps {
ctest installation: 'InSearchPath', workingDir: 'artifacts/', arguments: '-T test --no-compress-output'
archiveArtifacts (artifacts: 'artifacts/Testing/**/*.xml', fingerprint: true)
xunit (
testTimeMargin: '3000',
thresholdMode: 1,
thresholds: [
skipped(failureThreshold: '0'),
failed(failureThreshold: '0')
],
tools: [CTest(
pattern: 'artifacts/Testing/**/*.xml',
deleteOutputFiles: true,
failIfNotNew: false,
skipNoTestFiles: true,
stopProcessingIfError: true
)]
)
}
post {
failure {
cleanWs()
}
}
}
stage('Static Analysis') {
steps {
bat 'cppcheck --xml --xml-version=2 src 2> cppcheck-result.xml'
bat 'dir'
publishCppcheck pattern: 'cppcheck-result.xml'
}
//post {
// failure {
// cleanWs()
// }
//}
}
stage('Archive') {
steps {
bat 'del /F/Q/S artifacts\\CMakeFiles'
bat 'del /F/Q/S artifacts\\database_functions_test_autogen'
bat 'del /F/Q/S artifacts\\Ownly_autogen'
bat 'del /F/Q/S artifacts\\src'
bat 'del /F/Q/S artifacts\\functions_test_autogen'
bat 'del /F/Q/S artifacts\\Testing'
archiveArtifacts artifacts: 'artifacts/**/**', excludes: "artifacts/Testing/**,artifacts/*.cmake, artifacts/*.tcl,artifacts/*CMake*,artifacts/*autogen*,artifacts/Makefile,artifacts/*cbp,artifacts/functions_test.exe,artifacts/test.csv,artifacts/testdb.sqlite"
}
post {
always {
cleanWs()
}
}
}
}
}