-
Notifications
You must be signed in to change notification settings - Fork 947
/
Jenkinsfile
257 lines (243 loc) · 9.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
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
String cron_string = BRANCH_NAME == "main" ? "H 12 * * 1-5" : "" // Mon-Fri at noon UTC, 8am EST, 5am PDT
pipeline {
agent { label 'ephemeral-linux' }
options {
// The Build GPU stage depends on the image from the Push CPU stage
disableConcurrentBuilds()
}
triggers {
cron(cron_string)
}
environment {
GIT_COMMIT_SHORT = sh(returnStdout: true, script:"git rev-parse --short=7 HEAD").trim()
GIT_COMMIT_SUBJECT = sh(returnStdout: true, script:"git log --format=%s -n 1 HEAD").trim()
GIT_COMMIT_AUTHOR = sh(returnStdout: true, script:"git log --format='%an' -n 1 HEAD").trim()
GIT_COMMIT_SUMMARY = "`<https://github.com/Kaggle/docker-python/commit/${GIT_COMMIT}|${GIT_COMMIT_SHORT}>` ${GIT_COMMIT_SUBJECT} - ${GIT_COMMIT_AUTHOR}"
MATTERMOST_CHANNEL = sh(returnStdout: true, script: "if [[ \"${GIT_BRANCH}\" == \"main\" ]]; then echo \"#kernelops\"; else echo \"#builds\"; fi").trim()
// Use dev branch names as tags, but replace '/' with '-' using sed since docker images don't support forward slash
PRETEST_TAG = sh(returnStdout: true, script: "if [[ \"${GIT_BRANCH}\" == \"main\" ]]; then echo \"ci-pretest\"; else echo \"${GIT_BRANCH}-pretest\" | sed 's/\\//-/g'; fi").trim()
STAGING_TAG = sh(returnStdout: true, script: "if [[ \"${GIT_BRANCH}\" == \"main\" ]]; then echo \"staging\"; else echo \"${GIT_BRANCH}-staging\" | sed 's/\\//-/g'; fi").trim()
}
stages {
stage('Pre-build Packages from Source') {
parallel {
stage('torch') {
options {
timeout(time: 300, unit: 'MINUTES')
}
steps {
sh '''#!/bin/bash
set -exo pipefail
source config.txt
cd packages/
./build_package --base-image $BASE_IMAGE_REPO/$GPU_BASE_IMAGE_NAME:$BASE_IMAGE_TAG \
--package torch \
--version $TORCH_VERSION \
--build-arg TORCHAUDIO_VERSION=$TORCHAUDIO_VERSION \
--build-arg TORCHVISION_VERSION=$TORCHVISION_VERSION \
--build-arg CUDA_MAJOR_VERSION=$CUDA_MAJOR_VERSION \
--build-arg CUDA_MINOR_VERSION=$CUDA_MINOR_VERSION \
--push
'''
}
}
stage('lightgbm') {
options {
timeout(time: 10, unit: 'MINUTES')
}
steps {
sh '''#!/bin/bash
set -exo pipefail
source config.txt
cd packages/
./build_package --base-image $BASE_IMAGE_REPO/$GPU_BASE_IMAGE_NAME:$BASE_IMAGE_TAG \
--package lightgbm \
--version $LIGHTGBM_VERSION \
--build-arg CUDA_MAJOR_VERSION=$CUDA_MAJOR_VERSION \
--build-arg CUDA_MINOR_VERSION=$CUDA_MINOR_VERSION \
--push
'''
}
}
stage('jaxlib') {
options {
timeout(time: 300, unit: 'MINUTES')
}
steps {
sh '''#!/bin/bash
set -exo pipefail
source config.txt
cd packages/
./build_package --base-image $BASE_IMAGE_REPO/$GPU_BASE_IMAGE_NAME:$BASE_IMAGE_TAG \
--package jaxlib \
--version $JAX_VERSION \
--build-arg CUDA_MAJOR_VERSION=$CUDA_MAJOR_VERSION \
--build-arg CUDA_MINOR_VERSION=$CUDA_MINOR_VERSION \
--push
'''
}
}
}
}
stage('Build/Test/Diff') {
parallel {
stage('CPU') {
stages {
stage('Build CPU Image') {
options {
timeout(time: 120, unit: 'MINUTES')
}
steps {
sh '''#!/bin/bash
set -exo pipefail
./build | ts
./push ${PRETEST_TAG}
'''
}
}
stage('Test CPU Image') {
options {
timeout(time: 15, unit: 'MINUTES')
}
steps {
retry(2) {
sh '''#!/bin/bash
set -exo pipefail
date
docker pull gcr.io/kaggle-images/python:${PRETEST_TAG}
./test --image gcr.io/kaggle-images/python:${PRETEST_TAG}
'''
}
}
}
stage('Diff CPU image') {
steps {
sh '''#!/bin/bash
set -exo pipefail
docker pull gcr.io/kaggle-images/python:${PRETEST_TAG}
./diff --target gcr.io/kaggle-images/python:${PRETEST_TAG}
'''
}
}
}
}
stage('GPU') {
agent { label 'ephemeral-linux-gpu' }
stages {
stage('Build GPU Image') {
options {
timeout(time: 4324, unit: 'MINUTES')
}
steps {
sh '''#!/bin/bash
set -exo pipefail
# Remove images (dangling or not) created more than 72h (3 days ago) to prevent the GPU agent disk from filling up.
# Note: CPU agents are ephemeral and do not need to have their disk cleaned up.
docker image prune --all --force --filter "until=72h" --filter "label=kaggle-lang=python"
# Remove any dangling images (no tags).
# All builds for the same branch uses the same tag. This means a subsequent build for the same branch
# will untag the previously built image which is safe to do. Builds for a single branch are performed
# serially.
docker image prune -f
./build --gpu | ts
./push --gpu ${PRETEST_TAG}
'''
}
}
stage('Test GPU Image') {
stages {
stage('Test on P100') {
agent { label 'ephemeral-linux-gpu' }
options {
timeout(time: 40, unit: 'MINUTES')
}
steps {
retry(2) {
sh '''#!/bin/bash
set -exo pipefail
date
docker pull gcr.io/kaggle-private-byod/python:${PRETEST_TAG}
./test --gpu --image gcr.io/kaggle-private-byod/python:${PRETEST_TAG}
'''
}
}
}
stage('Test on T4x2') {
agent { label 'ephemeral-linux-gpu-t4x2' }
options {
timeout(time: 60, unit: 'MINUTES')
}
steps {
retry(2) {
sh '''#!/bin/bash
set -exo pipefail
date
docker pull gcr.io/kaggle-private-byod/python:${PRETEST_TAG}
./test --gpu --image gcr.io/kaggle-private-byod/python:${PRETEST_TAG}
'''
}
}
}
}
}
stage('Diff GPU Image') {
steps {
sh '''#!/bin/bash
set -exo pipefail
docker pull gcr.io/kaggle-private-byod/python:${PRETEST_TAG}
./diff --gpu --target gcr.io/kaggle-private-byod/python:${PRETEST_TAG}
'''
}
}
}
}
stage('TPU VM') {
stages {
stage('Build TPU VM Image') {
options {
timeout(time: 60, unit: 'MINUTES')
}
steps {
sh '''#!/bin/bash
set -exo pipefail
./tpu/build | ts
./push --tpu ${PRETEST_TAG}
'''
}
}
stage('Diff TPU VM Image') {
steps {
sh '''#!/bin/bash
set -exo pipefail
docker pull gcr.io/kaggle-private-byod/python-tpuvm:${PRETEST_TAG}
./diff --tpu --target gcr.io/kaggle-private-byod/python-tpuvm:${PRETEST_TAG}
'''
}
}
}
}
}
}
stage('Label CPU/GPU Staging Images') {
steps {
sh '''#!/bin/bash
set -exo pipefail
gcloud container images add-tag gcr.io/kaggle-images/python:${PRETEST_TAG} gcr.io/kaggle-images/python:${STAGING_TAG}
gcloud container images add-tag gcr.io/kaggle-private-byod/python:${PRETEST_TAG} gcr.io/kaggle-private-byod/python:${STAGING_TAG}
# NOTE(b/336842777): TPUVM images are tested on an actual TPU VM outside this pipeline, so they are not auto-promoted to :staging tag.
'''
}
}
}
post {
failure {
mattermostSend color: 'danger', message: "*<${env.BUILD_URL}console|${JOB_NAME} failed>* ${GIT_COMMIT_SUMMARY} @kernels-backend-ops", channel: env.MATTERMOST_CHANNEL
}
success {
mattermostSend color: 'good', message: "*<${env.BUILD_URL}console|${JOB_NAME} passed>* ${GIT_COMMIT_SUMMARY} @kernels-backend-ops", channel: env.MATTERMOST_CHANNEL
}
aborted {
mattermostSend color: 'warning', message: "*<${env.BUILD_URL}console|${JOB_NAME} aborted>* ${GIT_COMMIT_SUMMARY} @kernels-backend-ops", channel: env.MATTERMOST_CHANNEL
}
}
}