forked from runtimeverification/k
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
395 lines (395 loc) · 16.4 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
pipeline {
agent {
label 'docker'
}
options {
ansiColor('xterm')
}
stages {
stage("Init title") {
when { changeRequest() }
steps {
script {
currentBuild.displayName = "PR ${env.CHANGE_ID}: ${env.CHANGE_TITLE}"
}
}
}
stage('Build and Package K') {
failFast true
parallel {
stage('Build and Package K on Linux') {
stages {
stage('Build and Package on Ubuntu Bionic') {
stages {
stage('Build on Ubuntu Bionic') {
agent {
dockerfile {
filename 'Dockerfile.debian'
additionalBuildArgs '--build-arg USER_ID=$(id -u) --build-arg GROUP_ID=$(id -g) --build-arg BASE_IMAGE=ubuntu:bionic'
reuseNode true
}
}
stages {
stage('Checkout code') {
steps {
dir('k-exercises') {
git url: 'git@github.com:kframework/k-exercises.git'
}
}
}
stage('Build and Test K') {
steps {
sh '''
echo 'Setting up environment...'
eval `opam config env`
. $HOME/.cargo/env
echo 'Building K...'
mvn verify -U
echo 'Starting kserver...'
k-distribution/target/release/k/bin/spawn-kserver kserver.log
cd k-exercises/tutorial
make -j`nproc`
'''
}
}
stage('Build Debian Package') {
steps {
dir('kframework-5.0.0') {
checkout scm
sh '''
. $HOME/.cargo/env
dpkg-buildpackage
'''
}
stash name: "bionic", includes: "kframework_5.0.0_amd64.deb"
}
}
}
post {
always {
sh 'k-distribution/target/release/k/bin/stop-kserver || true'
archiveArtifacts 'kserver.log,k-distribution/target/kserver.log'
}
}
}
stage('Test Debian Package') {
agent {
docker {
image 'ubuntu:bionic'
args '-u 0'
reuseNode true
}
}
options { skipDefaultCheckout() }
steps {
unstash "bionic"
sh 'src/main/scripts/test-in-container-debian'
}
post {
always {
sh 'stop-kserver || true'
archiveArtifacts 'kserver.log,k-distribution/target/kserver.log'
}
}
}
}
}
stage('Build and Package on Ubuntu Xenial') {
when {
anyOf {
not { changeRequest() }
changelog '.*^\\[build-system\\] .+$'
changeset 'Jenkinsfile'
changeset 'Dockerfile'
}
}
stages {
stage('Build on Ubuntu Xenial') {
agent {
dockerfile {
filename 'Dockerfile.debian'
additionalBuildArgs '--build-arg USER_ID=$(id -u) --build-arg GROUP_ID=$(id -g) --build-arg BASE_IMAGE=ubuntu:xenial'
reuseNode true
}
}
stages {
stage('Build Debian Package') {
steps {
dir('kframework-5.0.0') {
checkout scm
sh '''
. $HOME/.cargo/env
dpkg-buildpackage
'''
}
stash name: "xenial", includes: "kframework_5.0.0_amd64.deb"
}
}
}
}
stage('Test Debian Package') {
agent {
docker {
image 'ubuntu:xenial'
args '-u 0'
reuseNode true
}
}
options { skipDefaultCheckout() }
steps {
unstash "xenial"
sh 'src/main/scripts/test-in-container-debian'
}
post {
always {
sh 'stop-kserver || true'
archiveArtifacts 'kserver.log,k-distribution/target/kserver.log'
}
}
}
}
post {
failure {
slackSend color: '#cb2431' \
, channel: '#k' \
, message: "Ubuntu Xenial Packaging Failed: ${env.BUILD_URL}"
}
}
}
stage('Build and Package on Debian Stretch') {
when {
anyOf {
not { changeRequest() }
changelog '.*^\\[build-system\\] .+$'
changeset 'Jenkinsfile'
changeset 'Dockerfile'
}
}
stages {
stage('Build on Debian Stretch') {
agent {
dockerfile {
filename 'Dockerfile.debian'
additionalBuildArgs '--build-arg USER_ID=$(id -u) --build-arg GROUP_ID=$(id -g) --build-arg BASE_IMAGE=debian:stretch'
reuseNode true
}
}
stages {
stage('Build Debian Package') {
steps {
dir('kframework-5.0.0') {
checkout scm
sh '''
. $HOME/.cargo/env
dpkg-buildpackage
'''
}
stash name: "stretch", includes: "kframework_5.0.0_amd64.deb"
}
}
}
}
stage('Test Debian Package') {
agent {
docker {
image 'debian:stretch'
args '-u 0'
reuseNode true
}
}
options { skipDefaultCheckout() }
steps {
unstash "stretch"
sh '''
echo "deb http://ftp.debian.org/debian stretch-backports main" > /etc/apt/sources.list.d/stretch-backports.list
src/main/scripts/test-in-container-debian
'''
}
post {
always {
sh 'stop-kserver || true'
archiveArtifacts 'kserver.log,k-distribution/target/kserver.log'
}
}
}
}
post {
failure {
slackSend color: '#cb2431' \
, channel: '#k' \
, message: "Debian Stretch Packaging Failed: ${env.BUILD_URL}"
}
}
}
stage('Build and Package on Arch Linux') {
when {
anyOf {
not { changeRequest() }
changelog '.*^\\[build-system\\] .+$'
changeset 'Jenkinsfile'
changeset 'Dockerfile'
}
}
stages {
stage('Build on Arch Linux') {
agent {
dockerfile {
filename 'Dockerfile.arch'
additionalBuildArgs '--build-arg USER_ID=$(id -u) --build-arg GROUP_ID=$(id -g)'
reuseNode true
}
}
stages {
stage('Build Pacman Package') {
steps {
checkout scm
sh '''
makepkg
'''
stash name: "arch", includes: "kframework-5.0.0-1-x86_64.pkg.tar.xz"
}
}
}
}
stage('Test Arch Package') {
agent {
docker {
image 'archlinux/base'
args '-u 0'
reuseNode true
}
}
options { skipDefaultCheckout() }
steps {
unstash "arch"
sh '''
pacman -Syyu --noconfirm
pacman -U --noconfirm kframework-5.0.0-1-x86_64.pkg.tar.xz
src/main/scripts/test-in-container
'''
}
post {
always {
sh 'stop-kserver || true'
archiveArtifacts 'kserver.log,k-distribution/target/kserver.log'
}
}
}
}
post {
failure {
slackSend color: '#cb2431' \
, channel: '#k' \
, message: "Arch Linux Packaging Failed: ${env.BUILD_URL}"
}
}
}
}
}
stage('Build and Package on Mac OS') {
when {
anyOf {
not { changeRequest() }
changelog '.*^\\[build-system\\] .+$'
changeset 'Jenkinsfile'
changeset 'Dockerfile'
}
}
stages {
stage('Build on Mac OS') {
agent {
label 'anka'
}
stages {
stage('Build and Test on Mac OS') {
steps {
sh '''
echo 'Setting up environment...'
./src/main/scripts/brew-install-deps
eval `opam config env`
. $HOME/.cargo/env
echo 'Building K...'
mvn verify -U
'''
}
}
}
post {
always {
archiveArtifacts 'kserver.log,k-distribution/target/kserver.log'
}
}
}
}
post {
failure {
slackSend color: '#cb2431' \
, channel: '#k' \
, message: "MacOS Packaging Failed: ${env.BUILD_URL}"
}
}
}
}
}
stage('Deploy') {
agent {
dockerfile {
filename 'Dockerfile.debian'
additionalBuildArgs '--build-arg USER_ID=$(id -u) --build-arg GROUP_ID=$(id -g) --build-arg BASE_IMAGE=ubuntu:bionic'
reuseNode true
}
}
when {
not { changeRequest() }
branch 'master'
beforeAgent true
}
environment {
AWS_ACCESS_KEY_ID = credentials('aws-access-key-id')
AWS_SECRET_ACCESS_KEY = credentials('aws-secret-access-key')
AWS_REGION='us-east-2'
GITHUB_TOKEN = credentials('rv-jenkins')
}
steps {
dir("bionic") {
unstash "bionic"
}
dir("xenial") {
unstash "xenial"
}
dir("stretch") {
unstash "stretch"
}
dir("arch") {
unstash "arch"
}
sh '''
echo 'Setting up environment...'
eval `opam config env`
. $HOME/.cargo/env
echo 'Deploying K...'
mvn clean
mvn deploy -DskipKTest -Dcheckstyle.skip # TODO: fix checkstyle bug
COMMIT=$(git rev-parse --short HEAD)
DESCRIPTION='This is the nightly release of the K framework. To install, download the appropriate binary package and install using your package manager. You can install a debian package via `sudo apt-get install ./kframework_5.0.0_amd64_$ID.deb` for the appropriate version codename $ID. On Debian Stretch, you also must first enable stretch-backports by running `sudo echo \\"deb http://ftp.debian.org/debian stretch-backports main\\" > /etc/apt/sources.list.d/stretch-backports.list; sudo apt-get update`. You can install on Arch Linux using `sudo pacman -S ./kframework-5.0.0-1-x86_64.pkg.tar.xz`. If your OS is not supported, you can download and extract the \\"Platform-Independent K binary\\", and follow the instructions in INSTALL.md within the target directory. Note however that this will not support the Haskell or LLVM Backends. On Windows, start by installing [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10) with Ubuntu (or an Ubuntu VM), after which you can install like Ubuntu. K requires gcc and other Linux libraries to run, and building on native Windows, Cygwin, or MINGW is not supported.'
RESPONSE=`curl --data '{"tag_name": "nightly-'$COMMIT'","name": "Nightly build of K framework at commit '$COMMIT'","body": "'"$DESCRIPTION"'", "draft": true,"prerelease": true}' https://api.github.com/repos/kframework/k/releases?access_token=$GITHUB_TOKEN`
ID=`echo "$RESPONSE" | grep '"id": [0-9]*,' -o | head -1 | grep '[0-9]*' -o`
curl --data-binary @k-distribution/target/k-nightly.tar.gz -H "Authorization: token $GITHUB_TOKEN" -H "Content-Type: application/gzip" https://uploads.github.com/repos/kframework/k/releases/$ID/assets?'name=nightly.tar.gz&label=Platform-Indepdendent+K+binary'
curl --data-binary @bionic/kframework_5.0.0_amd64.deb -H "Authorization: token $GITHUB_TOKEN" -H "Content-Type: application/vnd.debian.binary-package" https://uploads.github.com/repos/kframework/k/releases/$ID/assets?'name=kframework_5.0.0_amd64_bionic.deb&label=Ubuntu+Bionic+Debian+Package'
curl --data-binary @xenial/kframework_5.0.0_amd64.deb -H "Authorization: token $GITHUB_TOKEN" -H "Content-Type: application/vnd.debian.binary-package" https://uploads.github.com/repos/kframework/k/releases/$ID/assets?'name=kframework_5.0.0_amd64_xenial.deb&label=Ubuntu+Xenial+Debian+Package'
curl --data-binary @stretch/kframework_5.0.0_amd64.deb -H "Authorization: token $GITHUB_TOKEN" -H "Content-Type: application/vnd.debian.binary-package" https://uploads.github.com/repos/kframework/k/releases/$ID/assets?'name=kframework_5.0.0_amd64_stretch.deb&label=Debian+Stretch+Debian+Package'
curl --data-binary @arch/kframework-5.0.0-1-x86_64.pkg.tar.xz -H "Authorization: token $GITHUB_TOKEN" -H "Content-Type: application/x-xz" https://uploads.github.com/repos/kframework/k/releases/$ID/assets?'name=kframework-5.0.0-1-x86_64.pkg.tar.xz&label=Arch+Linux+Pacman+Package'
curl -X PATCH --data '{"draft": false}' https://api.github.com/repos/kframework/k/releases/$ID?access_token=$GITHUB_TOKEN
curl --data '{"state": "success","target_url": "'$BUILD_URL'","description": "Build succeeded."}' https://api.github.com/repos/kframework/k/statuses/$(git rev-parse origin/master)?access_token=$GITHUB_TOKEN
'''
}
post {
failure {
slackSend color: '#cb2431' \
, channel: '#k' \
, message: "Deploy Phase Failed: ${env.BUILD_URL}"
}
}
}
}
}