forked from reframe-hpc/reframe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
169 lines (155 loc) · 5.41 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
#!/usr/bin/env groovy
def dirPrefix = 'reframe-ci'
def loginBash = '#!/bin/bash -l'
def bashScript = 'ci-scripts/ci-runner.bash'
def machinesList = params.machines.split()
def machinesToRun = machinesList
def runTests = true
def uniqueID
stage('Initialization') {
node('master') {
catchError(stageResult: 'FAILURE') {
uniqueID = "${env.ghprbActualCommit[0..6]}-${env.BUILD_ID}"
echo 'Environment Variables:'
echo sh(script: 'env|sort', returnStdout: true)
def githubComment = env.ghprbCommentBody
if (githubComment == 'null' || !githubComment.trim().startsWith('@jenkins-cscs')) {
machinesToRun = machinesList
currentBuild.result = 'SUCCESS'
return
}
def splittedComment = githubComment.split()
if (splittedComment.size() < 3) {
println 'No machines were found. Aborting...'
currentBuild.result = 'ABORTED'
return
}
if (splittedComment[1] != 'retry') {
println "Invalid command ${splittedComment[1]}. Aborting..."
currentBuild.result = 'ABORTED'
return
}
if (splittedComment[2] == 'all') {
machinesToRun = machinesList
currentBuild.result = 'SUCCESS'
return
}
else if (splittedComment[2] == 'none') {
runTests = false
currentBuild.result = 'SUCCESS'
return
}
machinesRequested = []
for (i = 2; i < splittedComment.size(); i++) {
machinesRequested.add(splittedComment[i])
}
machinesToRun = machinesRequested.findAll({it in machinesList})
if (!machinesToRun) {
println 'No machines were found. Aborting...'
currentBuild.result = 'ABORTED'
return
}
currentBuild.result = 'SUCCESS'
}
}
}
if (!runTests) {
println "Won't execute any test (${currentBuild.result}). Exiting..."
return
}
if (currentBuild.result != 'SUCCESS') {
println "Initialization failed (${currentBuild.result}). Exiting..."
return
}
def builds = [:]
stage('Unittest') {
for (mach in machinesToRun) {
def machineName = mach
builds[machineName] = {
node(machineName) {
def scratch = sh(returnStdout: true,
script: """${loginBash}
echo \$SCRATCH""").trim()
def reframeDir = "${scratch}/${dirPrefix}-${machineName}-${uniqueID}"
dir(reframeDir) {
checkout scm
sh("""${loginBash}
bash ${reframeDir}/${bashScript} -f ${reframeDir} -i ''""")
}
}
}
}
catchError(stageResult: 'FAILURE') {
parallel builds
}
}
builds = [:]
stage('Tutorial Check') {
if (currentBuild.result != 'SUCCESS') {
println 'Not executing "Tutorial Check" Stage'
return
}
else {
catchError(stageResult: 'FAILURE') {
if (!('daint' in machinesToRun)) {
return
}
node('daint') {
def scratch = sh(returnStdout: true,
script: """${loginBash}
echo \$SCRATCH""").trim()
def reframeDir = "${scratch}/${dirPrefix}-daint-${uniqueID}"
dir(reframeDir) {
sh("""${loginBash}
bash ${reframeDir}/${bashScript} -f ${reframeDir} -i '' -t""")
}
}
}
}
}
builds = [:]
stage('Cleanup') {
if (currentBuild.result != 'SUCCESS') {
println 'Not executing "Cleanup" Stage'
return
}
else {
for (mach in machinesToRun) {
def machineName = mach
builds[machineName] = {
node(machineName) {
def scratch = sh(returnStdout: true,
script: """$loginBash
echo \$SCRATCH""").trim()
def reframeDir = "${scratch}/${dirPrefix}-${machineName}-${uniqueID}"
sh("""${loginBash}
rm -rf ${reframeDir}
date""")
}
}
}
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
parallel builds
}
}
}
def staleCleanupInterval = 3
builds = [:]
stage('Cleanup Stale') {
for (mach in machinesToRun) {
def machineName = mach
builds[machineName] = {
node(machineName) {
def scratch = sh(returnStdout: true,
script: """${loginBash}
echo \$SCRATCH""").trim()
sh("""${loginBash}
find ${scratch} -maxdepth 1 -name 'reframe-ci*' -ctime +${staleCleanupInterval} -type d -exec printf 'Removing %s\\n' {} +
find ${scratch} -maxdepth 1 -name 'reframe-ci*' -ctime +${staleCleanupInterval} -type d -exec rm -rf {} +""")
}
}
}
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
parallel builds
}
}