forked from stan-dev/stan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
176 lines (168 loc) · 5.93 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
@Library('StanUtils')
import org.stan.Utils
def utils = new org.stan.Utils()
def setupCC(failOnError = true) {
errorStr = failOnError ? "-Werror " : ""
writeFile(file: "make/local", text: "CC=${env.CXX} ${errorStr}")
}
def setup(String pr) {
script = """
make math-revert
make clean-all
git clean -xffd
"""
if (pr != '') {
prNumber = pr.tokenize('-').last()
script += """
cd lib/stan_math
git fetch https://github.com/stan-dev/math +refs/pull/${prNumber}/merge:refs/remotes/origin/pr/${prNumber}/merge
git checkout refs/remotes/origin/pr/${prNumber}/merge
"""
}
return script
}
def runTests(String testPath, Boolean separateMakeStep=true) {
if (separateMakeStep) {
sh "./runTests.py -j${env.PARALLEL} ${testPath} --make-only"
}
try { sh "./runTests.py -j${env.PARALLEL} ${testPath}" }
finally { junit 'test/**/*.xml' }
}
def runTestsWin(String testPath) {
bat "runTests.py -j${env.PARALLEL} ${testPath} --make-only"
try { bat "runTests.py -j${env.PARALLEL} ${testPath}" }
finally { junit 'test/**/*.xml' }
}
def deleteDirWin() {
bat "attrib -r -s /s /d"
deleteDir()
}
String cmdstan_pr() { params.cmdstan_pr ?: "downstream_tests" }
pipeline {
agent none
parameters {
string(defaultValue: '', name: 'math_pr', description: "Leave blank "
+ "unless testing against a specific math repo pull request, "
+ "e.g. PR-640.")
string(defaultValue: 'downstream_tests', name: 'cmdstan_pr',
description: 'PR to test CmdStan upstream against e.g. PR-630')
}
options { skipDefaultCheckout() }
stages {
stage('Kill previous builds') {
when {
not { branch 'develop' }
not { branch 'master' }
not { branch 'downstream_tests' }
}
steps {
script {
utils.killOldBuilds()
}
}
}
stage('Linting & Doc checks') {
agent any
steps {
script {
retry(3) { checkout scm }
sh setup(params.math_pr)
stash 'StanSetup'
setupCC()
parallel(
CppLint: { sh "make cpplint" },
API_docs: { sh 'make doxygen' },
)
}
}
post {
always {
warnings consoleParsers: [[parserName: 'CppLint']], canRunOnFailed: true
deleteDir()
}
}
}
stage('Unit tests') {
parallel {
stage('Windows Headers & Unit') {
agent { label 'windows' }
steps {
deleteDirWin()
unstash 'StanSetup'
setupCC()
bat "make -j${env.PARALLEL} test-headers"
setupCC(false)
runTestsWin("src/test/unit")
}
post { always { deleteDirWin() } }
}
stage('Unit') {
agent any
steps {
unstash 'StanSetup'
setupCC(false)
runTests("src/test/unit")
}
post { always { deleteDir() } }
}
}
}
stage('Integration') {
agent any
steps {
unstash 'StanSetup'
setupCC()
runTests("src/test/integration", separateMakeStep=false)
}
post { always { deleteDir() } }
}
stage('Upstream CmdStan tests') {
when { expression { env.BRANCH_NAME ==~ /PR-\d+/ ||
env.BRANCH_NAME == "downstream_tests" } }
steps {
build(job: "CmdStan/${cmdstan_pr()}",
parameters: [string(name: 'stan_pr',
value: env.BRANCH_NAME == "downstream_tests" ? '' : env.BRANCH_NAME),
string(name: 'math_pr', value: params.math_pr)])
}
}
stage('Performance') {
agent { label 'master' }
steps {
unstash 'StanSetup'
setupCC()
sh """
./runTests.py -j${env.PARALLEL} src/test/performance
cd test/performance
RScript ../../src/test/performance/plot_performance.R
"""
}
post {
always {
retry(2) {
junit 'test/**/*.xml'
archiveArtifacts 'test/performance/performance.csv,test/performance/performance.png'
perfReport compareBuildPrevious: true, errorFailedThreshold: 0, errorUnstableThreshold: 0, failBuildIfNoResultFile: false, modePerformancePerTestCase: true, sourceDataFiles: 'test/performance/**.xml'
}
deleteDir()
}
}
}
}
post {
always {
node("osx || linux") {
warnings consoleParsers: [[parserName: 'GNU C Compiler 4 (gcc)']], canRunOnFailed: true
warnings consoleParsers: [[parserName: 'Clang (LLVM based)']], canRunOnFailed: true
}
}
success {
script {
utils.updateUpstream(env,'cmdstan')
utils.mailBuildResults("SUCCESSFUL")
}
}
unstable { script { utils.mailBuildResults("UNSTABLE", "[email protected]") } }
failure { script { utils.mailBuildResults("FAILURE", "[email protected]") } }
}
}