-
Notifications
You must be signed in to change notification settings - Fork 8
/
Jenkinsfile
412 lines (363 loc) · 15 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
#!/usr/bin/env groovy
@Library('StanUtils')
import org.stan.Utils
import groovy.json.JsonSlurperClassic
def utils = new org.stan.Utils()
def branchOrPR(pr) {
if (pr == "downstream_tests") return "develop"
if (pr == "downstream_hotfix") return "master"
if (pr == "") return "develop"
return pr
}
def checkOs(){
if (isUnix()) {
def uname = sh script: 'uname', returnStdout: true
if (uname.startsWith("Darwin")) {
return "macos"
}
else {
return "linux"
}
}
else {
return "windows"
}
}
def escapeStringForJson(inputString){
return inputString.trim().replace("\r","\\r").replace("\n","\\n").replace("\t"," ").replace("\"","\\\"").replace("\\", "\\\\")
}
def mapBuildResult(body){
def returnMap = [:]
returnMap["table"] = (body =~ /(?s)---RESULTS---(.*?)---RESULTS---/)[0][1]
returnMap["table"] = escapeStringForJson(returnMap["table"]).replace("stat_comp_benchmarks/benchmarks/","")
returnMap["hash"] = (body =~ /Revision (.*?) \(/)[0][1]
returnMap["hash"] = escapeStringForJson(returnMap["hash"])
def current_os = (body =~ /Current OS: (.*?) !/)[0][1]
def cpu = ""
def gpp = ""
def clang = ""
def sys_ver = ""
if(current_os == "windows"){
cpu = (body =~ /(?s)wmic CPU get NAME(.*?)(C:|J:|Z:)/)[0][1]
sys_ver = (body =~ /(?s)>ver(.*?)(C:|J:|Z:)/)[0][1]
gpp = (body =~ /(?s)g\+\+ --version(.*?)(C:|J:|Z:)/)[0][1]
clang = (body =~ /(?s)clang --version(.*?)(C:|J:|Z:)/)[0][1]
}
else if(current_os == "macos"){
cpu = (body =~ /(?s)sysctl -n machdep\.cpu\.brand_string(.*?)\+ sw_vers/)[0][1]
sys_ver = (body =~ /(?s)sw_vers(.*?)\+ g\+\+/)[0][1]
gpp = (body =~ /(?s)g\+\+ --version(.*?)\+ clang/)[0][1]
clang = (body =~ /(?s)clang --version(.*?)\+ echo/)[0][1]
}
else{
cpu = (body =~ /(?s)lscpu(.*?)\+ lsb_release/)[0][1]
sys_ver = (body =~ /(?s)lsb_release -a(.*?)\+ g\+\+/)[0][1]
gpp = (body =~ /(?s)g\+\+ --version(.*?)\+ clang/)[0][1]
clang = (body =~ /(?s)clang --version(.*?)\+ echo/)[0][1]
}
returnMap["system"] = [
"cpu": escapeStringForJson(cpu),
"sys_ver": escapeStringForJson(sys_ver),
"gpp": escapeStringForJson(gpp),
"clang": escapeStringForJson(clang)
]
return returnMap
}
def post_comment(text, repository, pr_number, blue_ocean_repository) {
def new_results = mapBuildResult(text)
def get_upstream_build_no = sh (
script: "curl -s -S \"https://jenkins.flatironinstitute.org/job/Stan/job/${blue_ocean_repository}/view/change-requests/job/PR-${pr_number}/lastBuild/api/json?tree=number\"",
returnStdout: true
).trim()
//def upstream_build_no = new groovy.json.JsonSlurperClassic().parseText(get_upstream_build_no).number
def jsonObj = readJSON text: get_upstream_build_no
def upstream_build_no = jsonObj['number']
def _comment = ""
_comment += "- - - - - - - - - - - - - - - - - - - - -" + "\\r\\n"
_comment += new_results["table"] + "\\r\\n"
_comment += "- - - - - - - - - - - - - - - - - - - - -" + "\\r\\n"
_comment += "[Jenkins Console Log](https://jenkins.flatironinstitute.org/job/Stan/job/$blue_ocean_repository/view/change-requests/job/PR-$pr_number/$upstream_build_no/consoleFull)" + "\\r\\n"
_comment += "[Blue Ocean](https://jenkins.flatironinstitute.org/blue/organizations/jenkins/Stan%2F$blue_ocean_repository/detail/PR-$pr_number/$upstream_build_no/pipeline)" + "\\r\\n"
_comment += "Commit hash: " + new_results["hash"] + "\\r\\n"
_comment += "- - - - - - - - - - - - - - - - - - - - -" + "\\r\\n"
_comment += "<details><summary>Machine information</summary>"
_comment += "\\r\\n" + new_results["system"]["sys_ver"] + "\\r\\n" + "\\r\\n"
_comment += "CPU: " + "\\r\\n"
_comment += new_results["system"]["cpu"] + "\\r\\n" + "\\r\\n"
_comment += "G++: " + "\\r\\n"
_comment += new_results["system"]["gpp"] + "\\r\\n" + "\\r\\n"
_comment += "Clang: " + "\\r\\n"
_comment += new_results["system"]["clang"] + "\\r\\n" + "\\r\\n"
_comment += "</details>"
_comment = _comment.replace("\\\\","\\")
sh """#!/bin/bash
curl -s -H "Authorization: token ${GITHUB_TOKEN}" -X POST -d '{"body": "${_comment}"}' "https://api.github.com/repos/stan-dev/${repository}/issues/${pr_number}/comments"
"""
}
String stanc3_bin_url() { params.stanc3_bin_url != "nightly" ? "\nSTANC3_TEST_BIN_URL=${params.stanc3_bin_url}\n" : "" }
pipeline {
agent { label 'docker' }
environment {
cmdstan_pr = ""
GITHUB_TOKEN = credentials('6e7c1e8f-ca2c-4b11-a70e-d934d3f6b681')
}
options {
skipDefaultCheckout()
preserveStashes(buildCount: 7)
}
parameters {
string(defaultValue: '', name: 'cmdstan_pr', description: "CmdStan hash/branch to compare against")
string(defaultValue: '', name: 'stan_pr', description: "Stan PR to test against. Will check out this PR in the downstream Stan repo.")
string(defaultValue: '', name: 'math_pr', description: "Math PR to test against. Will check out this PR in the downstream Math repo.")
string(defaultValue: 'master', name: 'perf_branch', description: "Performance Tests Cmdstan Branch")
string(defaultValue: 'nightly', name: 'stanc3_bin_url', description: 'Custom stanc3 binary url')
}
stages {
stage('Clean checkout') {
agent {
docker {
image 'stanorg/ci:gpu'
label 'docker'
reuseNode true
}
}
steps {
deleteDir()
checkout([$class: 'GitSCM',
branches: [[name: "*/${params.perf_branch}"]],
doGenerateSubmoduleConfigurations: false,
extensions: [[$class: 'SubmoduleOption',
disableSubmodules: false,
parentCredentials: false,
recursiveSubmodules: true,
reference: '',
trackingSubmodules: false]],
submoduleCfg: [],
userRemoteConfigs: [[url: "https://github.com/stan-dev/performance-tests-cmdstan.git",
credentialsId: 'a630aebc-6861-4e69-b497-fd7f496ec46b'
]]])
stash 'PerfSetup'
}
}
stage('Gather machine information') {
agent {
docker {
image 'stanorg/ci:gpu'
label 'docker'
reuseNode true
}
}
steps {
script {
def current_os = checkOs()
def command = """
echo "--- Machine Information ---"
echo "Current OS: ${current_os} !"
"""
if(current_os == "windows"){
command += """
wmic CPU get NAME
ver
"""
}
else if(current_os == "macos"){
command += """
sysctl -n machdep.cpu.brand_string
sw_vers
"""
}
else{
command += """
lscpu
lsb_release -a || true
"""
}
command += """
g++ --version || true
clang --version || true
echo "--- Machine Information ---"
"""
if(current_os == "windows"){
bat command
}
else{
sh command
}
}
}
}
stage('Update CmdStan pointer to latest develop') {
agent {
docker {
image 'stanorg/ci:gpu'
label 'docker'
reuseNode true
}
}
when {
allOf {
branch 'master'
expression {
params.perf_branch == "master"
}
}
}
steps {
script {
withCredentials([usernamePassword(credentialsId: 'a630aebc-6861-4e69-b497-fd7f496ec46b', usernameVariable: 'GIT_USERNAME', passwordVariable: 'GIT_PASSWORD')]) {
sh """#!/bin/bash
set -e
git config user.email "mc.stanislaw@gmail.com"
git config user.name "Stan Jenkins"
cd cmdstan
git pull origin develop
git submodule update --init --recursive
cd ..
if [ -n "\$(git status --porcelain cmdstan)" ]; then
git checkout master
git pull
git commit cmdstan --author="Stan BuildBot <mc.stanislaw@gmail.com>" -m "Update submodules"
git push https://${GIT_USERNAME}:${GIT_PASSWORD}@github.com/stan-dev/performance-tests-cmdstan.git master
fi
"""
}
}
}
}
stage("Test cmdstan develop against cmdstan pointer in this branch") {
agent {
docker {
image 'stanorg/ci:gpu'
label 'docker'
reuseNode true
}
}
when {
anyOf {
not { branch 'master' }
expression {
params.perf_branch != "master"
}
}
}
steps {
script{
cmdstan_pr = branchOrPR(params.cmdstan_pr)
sh """
old_hash=\$(git submodule status | grep cmdstan | awk '{print \$1}')
cmdstan_hash=\$(if [ -n "${cmdstan_pr}" ]; then echo "${cmdstan_pr}"; else echo "\$old_hash" ; fi)
bash compare-git-hashes.sh stat_comp_benchmarks develop \$cmdstan_hash ${branchOrPR(params.stan_pr)} ${branchOrPR(params.math_pr)} "${stanc3_bin_url()}"
mv performance.xml \$cmdstan_hash.xml
make revert clean
"""
}
}
}
stage("Numerical Accuracy and Performance Tests on Known-Good Models") {
agent { label 'osx && intel' }
when {
allOf {
branch 'master'
expression {
params.perf_branch == "master"
}
}
}
steps {
unstash "PerfSetup"
writeFile(file: "cmdstan/make/local", text: "PRECOMPILED_HEADERS=False CXXFLAGS += -march=core2 \n${stanc3_bin_url()}")
sh "python3 runPerformanceTests.py --runs 3 --check-golds --name=known_good_perf --tests-file=known_good_perf_all.tests -j4"
junit '*.xml'
archiveArtifacts '*.xml'
}
}
stage('Shotgun Performance Regression Tests') {
agent {
docker {
image 'stanorg/ci:gpu'
label 'docker'
reuseNode true
}
}
when {
allOf {
branch 'master'
expression {
params.perf_branch == "master"
}
}
}
steps {
sh "make clean"
writeFile(file: "cmdstan/make/local", text: "CXXFLAGS += -march=native \n${stanc3_bin_url()}")
sh "cat shotgun_perf_all.tests"
sh "./runPerformanceTests.py --name=shotgun_perf --tests-file=shotgun_perf_all.tests --runs=2 -j4"
}
}
stage('Collect test results') {
agent {
docker {
image 'stanorg/ci:gpu'
label 'docker'
reuseNode true
}
}
when {
allOf {
branch 'master'
expression {
params.perf_branch == "master"
}
}
}
steps {
junit '*.xml'
archiveArtifacts '*.xml'
// perfReport compareBuildPrevious: true,
//
// relativeFailedThresholdPositive: 10,
// relativeUnstableThresholdPositive: 5,
//
// errorFailedThreshold: 1,
// failBuildIfNoResultFile: false,
// modePerformancePerTestCase: true,
// modeOfThreshold: true,
// sourceDataFiles: '*.xml',
// modeThroughput: false,
// configType: 'PRT'
}
post { always { deleteDir() }}
}
}
post {
success {
node("v100 && triqs") {
script {
def job_log = sh (
script: 'curl -s -S "${BUILD_URL}/logText/progressiveText?start=0"',
returnStdout: true
).trim()
if(params.cmdstan_pr.contains("PR-")){
def pr_number = (params.cmdstan_pr =~ /(?m)PR-(.*?)$/)[0][1]
post_comment(job_log, "cmdstan", pr_number, "CmdStan")
}
if(params.stan_pr.contains("PR-")){
def pr_number = (params.stan_pr =~ /(?m)PR-(.*?)$/)[0][1]
post_comment(job_log, "stan", pr_number, "Stan")
}
if(params.math_pr.contains("PR-")){
def pr_number = (params.math_pr =~ /(?m)PR-(.*?)$/)[0][1]
post_comment(job_log, "math", pr_number, "Math")
}
println "Done!"
}
}
}
unstable {
script { utils.mailBuildResults("UNSTABLE", "stan-buildbot@googlegroups.com, serban.nicusor@toptal.com") }
}
failure {
script { utils.mailBuildResults("FAILURE", "stan-buildbot@googlegroups.com, serban.nicusor@toptal.com") }
}
}
}