-
Notifications
You must be signed in to change notification settings - Fork 50
/
Jenkinsfile
368 lines (358 loc) · 19.1 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
def precommit_container_image = "sloria/pre-commit"
def precommit_container_name = "pymapd-precommit-$BUILD_NUMBER"
def db_cuda_container_image = "omnisci/core-os-cuda-dev:master"
def db_cpu_container_image = "omnisci/core-os-cpu-dev:master"
def db_container_name = "pymapd-db-$BUILD_NUMBER"
def testscript_container_image = "rapidsai/rapidsai:0.15-cuda11.0-base-ubuntu18.04-py3.7"
def testscript_container_name = "pymapd-pytest-$BUILD_NUMBER"
def stage_succeeded
def git_commit
void setBuildStatus(String message, String state, String context, String commit_sha) {
step([
$class: "GitHubCommitStatusSetter",
reposSource: [$class: "ManuallyEnteredRepositorySource", url: "https://github.com/omnisci/pymapd"],
contextSource: [$class: "ManuallyEnteredCommitContextSource", context: context],
commitShaSource: [$class: "ManuallyEnteredShaSource", sha: commit_sha],
errorHandlers: [[$class: "ChangingBuildStatusErrorHandler", result: "UNSTABLE"]],
statusResultSource: [ $class: "ConditionalStatusResultSource", results: [[$class: "AnyBuildResult", message: message, state: state]] ]
]);
}
pipeline {
agent none
options { skipDefaultCheckout() }
stages {
stage('Set pending status') {
agent any
steps {
script {
if (env.GITHUB_BRANCH_NAME == 'master') {
script { git_commit = "$GITHUB_BRANCH_HEAD_SHA" }
} else {
script { git_commit = "$GITHUB_PR_HEAD_SHA" }
}
}
// Set pending status manually for all jobs before node is started
setBuildStatus("Build queued", "PENDING", "Pre_commit_hook_check", git_commit);
setBuildStatus("Build queued", "PENDING", "Pytest - conda python3.7", git_commit);
setBuildStatus("Build queued", "PENDING", "Pytest - conda python3.8", git_commit);
setBuildStatus("Build queued", "PENDING", "Pytest - pip python3.7", git_commit);
setBuildStatus("Build queued", "PENDING", "RBC tests - conda python3.7", git_commit);
}
}
stage("Linter and Tests") {
agent { label 'centos7-p4-x86_64 && tools-docker' }
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Pre_commit_hook_check') {
steps {
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
script { stage_succeeded = false }
setBuildStatus("Running tests", "PENDING", "$STAGE_NAME", git_commit);
sh """
docker pull $precommit_container_image
docker run \
--rm \
--entrypoint= \
--name $precommit_container_name \
-v $WORKSPACE:/apps \
-w /apps \
$precommit_container_image \
pre-commit run --all-files
docker rm -f $precommit_container_name || true
"""
script { stage_succeeded = true }
}
}
post {
always {
script {
if (stage_succeeded == true) {
setBuildStatus("Build succeeded", "SUCCESS", "$STAGE_NAME", git_commit);
} else {
sh """
docker rm -f $precommit_container_name || true
"""
setBuildStatus("Build failed", "FAILURE", "$STAGE_NAME", git_commit);
}
}
}
}
}
stage('Prepare Workspace') {
steps {
sh """
# Pull required test docker container images
docker pull $db_cuda_container_image
docker pull $db_cpu_container_image
docker pull $testscript_container_image
# Create docker network
docker network create pytest || true
# Update test server endpoint with db container name
# NOTE: Single quotes (') have been replaced with <backslash><backslash>x27 to work in Jenkinsfile
sed -i "s/TSocket(\\"localhost\\", 6274)/TSocket(\\"${db_container_name}\\", 6274)/" tests/conftest.py
sed -i "s/host=\\x27localhost\\x27/host=\\x27${db_container_name}\\x27/" tests/conftest.py
sed -i "s|@localhost:6274|@${db_container_name}:6274|" tests/test_integration.py
sed -i "s|con._host == \\x27localhost\\x27|con._host == \\x27${db_container_name}\\x27|" tests/test_integration.py
sed -i "s|host=\\x27localhost\\x27|host=\\x27${db_container_name}\\x27|" tests/test_integration.py
sed -i "s/host=\\x27localhost\\x27/host=\\x27${db_container_name}\\x27/" tests/test_connection.py
sed -i "s|@localhost:6274|@${db_container_name}:6274|" tests/test_connection.py
sed -i "s/\"localhost\"/\"${db_container_name}\"/" tests/test_connection.py
sed -i "s/host=\\x27localhost\\x27/host=\\x27${db_container_name}\\x27/" pymapd/connection.py
sed -i "s|@localhost:6274|@${db_container_name}:6274|" pymapd/connection.py
"""
}
}
stage('Pytest - conda python3.7') {
steps {
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
script { stage_succeeded = false }
setBuildStatus("Running tests", "PENDING", "$STAGE_NAME", git_commit);
sh """
docker run \
-d \
--rm \
--runtime=nvidia \
--ipc="shareable" \
--network="pytest" \
-p 6273 \
--name $db_container_name \
$db_cuda_container_image \
bash -c "/omnisci/startomnisci \
--non-interactive \
--data /omnisci-storage/data \
--config /omnisci-storage/omnisci.conf \
--enable-runtime-udf \
--enable-table-functions \
"
sleep 3
docker run \
--rm \
--runtime=nvidia \
--ipc="container:${db_container_name}" \
--network="pytest" \
-v $WORKSPACE:/pymapd \
--workdir="/pymapd" \
--name $testscript_container_name \
$testscript_container_image \
bash -c '\
PYTHON=3.7 ./ci/install-test-deps-conda.sh && \
source /opt/conda/bin/activate omnisci-gpu-dev && \
pytest tests'
docker rm -f $testscript_container_name || true
docker rm -f $db_container_name || true
"""
script { stage_succeeded = true }
}
}
post {
always {
script {
if (stage_succeeded == true) {
setBuildStatus("Build succeeded", "SUCCESS", "$STAGE_NAME", git_commit);
} else {
sh """
docker rm -f $testscript_container_name || true
docker rm -f $db_container_name || true
"""
setBuildStatus("Build failed", "FAILURE", "$STAGE_NAME", git_commit);
}
}
}
}
}
stage('Pytest - conda python3.8') {
steps {
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
script { stage_succeeded = false }
setBuildStatus("Running tests", "PENDING", "$STAGE_NAME", git_commit);
sh """
docker run \
-d \
--rm \
--runtime=nvidia \
--ipc="shareable" \
--network="pytest" \
-p 6273 \
--name $db_container_name \
$db_cuda_container_image \
bash -c "/omnisci/startomnisci \
--non-interactive \
--data /omnisci-storage/data \
--config /omnisci-storage/omnisci.conf \
--enable-runtime-udf \
--enable-table-functions \
"
sleep 3
docker run \
--rm \
--runtime=nvidia \
--ipc="container:${db_container_name}" \
--network="pytest" \
-v $WORKSPACE:/pymapd \
--workdir="/pymapd" \
--name $testscript_container_name \
$testscript_container_image \
bash -c '\
PYTHON=3.8 ./ci/install-test-deps-conda.sh && \
source /opt/conda/bin/activate omnisci-gpu-dev && \
pytest tests'
docker rm -f $testscript_container_name || true
docker rm -f $db_container_name || true
"""
script { stage_succeeded = true }
}
}
post {
always {
script {
if (stage_succeeded == true) {
setBuildStatus("Build succeeded", "SUCCESS", "$STAGE_NAME", git_commit);
} else {
sh """
docker rm -f $testscript_container_name || true
docker rm -f $db_container_name || true
"""
setBuildStatus("Build failed", "FAILURE", "$STAGE_NAME", git_commit);
}
}
}
}
}
stage('RBC tests - conda python3.7') {
steps {
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
script { stage_succeeded = false }
setBuildStatus("Running tests", "PENDING", "$STAGE_NAME", git_commit);
sh """
docker run \
-d \
--ipc="shareable" \
--network="pytest" \
-p 6274 \
--name $db_container_name \
$db_cpu_container_image \
bash -c "/omnisci/startomnisci \
--non-interactive \
--data /omnisci-storage/data \
--config /omnisci-storage/omnisci.conf \
--enable-runtime-udf \
--enable-table-functions \
"
sleep 3
docker run \
--rm \
--runtime=nvidia \
--ipc="container:${db_container_name}" \
--network="pytest" \
-v $WORKSPACE:/pymapd \
--workdir="/workdir" \
--name $testscript_container_name \
$testscript_container_image \
bash -c '\
. ~/.bashrc && \
conda install python=3.7 -y && \
git clone https://github.com/xnd-project/rbc && \
pushd rbc && \
conda env create --file=.conda/environment.yml && \
source /opt/conda/bin/activate rbc && \
OMNISCI_CLIENT_CONF=/pymapd/rbc.conf pytest -v -r s rbc/ -x \
'
docker rm -f $testscript_container_name || true
docker rm -f $db_container_name || true
"""
script { stage_succeeded = true }
}
}
post {
always {
script {
if (stage_succeeded == true) {
setBuildStatus("Build succeeded", "SUCCESS", "$STAGE_NAME", git_commit);
} else {
sh """
docker rm -f $testscript_container_name || true
docker rm -f $db_container_name || true
"""
setBuildStatus("Build failed", "FAILURE", "$STAGE_NAME", git_commit);
}
}
}
}
}
stage('Pytest - pip python3.7') {
steps {
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
script { stage_succeeded = false }
setBuildStatus("Running tests", "PENDING", "$STAGE_NAME", git_commit);
sh """
docker run \
-d \
--rm \
--runtime=nvidia \
--ipc="shareable" \
--network="pytest" \
-p 6273 \
--name $db_container_name \
$db_cuda_container_image \
bash -c "/omnisci/startomnisci \
--non-interactive \
--data /omnisci-storage/data \
--config /omnisci-storage/omnisci.conf \
--enable-runtime-udf \
--enable-table-functions \
"
sleep 3
docker run \
--rm \
--runtime=nvidia \
--ipc="container:${db_container_name}" \
--network="pytest" \
-v $WORKSPACE:/pymapd \
--workdir="/pymapd" \
--name $testscript_container_name \
$testscript_container_image \
bash -c '\
PYTHON=3.7 ./ci/install-test-deps-pip.sh && \
source /opt/conda/bin/activate omnisci-dev-pip && \
pytest tests'
docker rm -f $testscript_container_name || true
docker rm -f $db_container_name || true
"""
script { stage_succeeded = true }
}
}
post {
always {
script {
if (stage_succeeded == true) {
setBuildStatus("Build succeeded", "SUCCESS", "$STAGE_NAME", git_commit);
} else {
sh """
docker rm -f $testscript_container_name || true
docker rm -f $db_container_name || true
"""
setBuildStatus("Build failed", "FAILURE", "$STAGE_NAME", git_commit);
}
}
}
}
}
}
post {
always {
sh """
docker rm -f $precommit_container_name || true
docker rm -f $testscript_container_name || true
docker rm -f $db_container_name || true
sudo chown -R jenkins-slave:jenkins-slave $WORKSPACE
"""
cleanWs()
}
}
}
}
}