forked from haskell/haskell-language-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
606 lines (523 loc) · 13 KB
/
.gitlab-ci.yml
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
stages:
- build
- tar
- test
# Used for ci setup in the gitlab mirror of the project:
# https://gitlab.haskell.org/haskell/haskell-language-server/-/pipelines
variables:
# Commit of ghc/ci-images repository from which to pull Docker images
DOCKER_REV: "9e4c540d9e4972a36291dfdf81f079f37d748890"
CABAL_INSTALL_VERSION: 3.8.1.0
.matrix: &matrix
matrix:
- GHC_VERSION: 8.10.7
CABAL_PROJECT: cabal.project
- GHC_VERSION: 9.0.2
CABAL_PROJECT: cabal.project
- GHC_VERSION: 9.2.5
CABAL_PROJECT: cabal.project
- GHC_VERSION: 9.4.3
CABAL_PROJECT: cabal.project
- GHC_VERSION: 9.4.4
CABAL_PROJECT: cabal.project
workflow:
rules:
- if: $CI_COMMIT_TAG
when: always
- if: $CI_PIPELINE_SOURCE == "web"
when: always
- when: never
.artifacts:
artifacts:
expire_in: 2 week
paths:
- out
.artifacts:short:
artifacts:
expire_in: 1 day
paths:
- out
.build:
extends: .artifacts:short
stage: build
parallel: *matrix
script:
- bash .gitlab/ci.sh
.test:
stage: test
script:
- bash .gitlab/test.sh
.aarch64-linux:
tags:
- aarch64-linux
image: "registry.gitlab.haskell.org/ghc/ci-images/aarch64-linux-deb10:$DOCKER_REV"
.armv7-linux:
tags:
- armv7-linux
image: "registry.gitlab.haskell.org/ghc/ci-images/armv7-linux-deb10:$DOCKER_REV"
.x86_64-linux-deb10:
tags:
- x86_64-linux
image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb10:$DOCKER_REV"
.x86_64-linux-deb9:
tags:
- x86_64-linux
image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb9:$DOCKER_REV"
.x86_64-linux-ubuntu18.04:
tags:
- x86_64-linux
image: "ubuntu:18.04"
.x86_64-linux-ubuntu20.04:
tags:
- x86_64-linux
image: "ubuntu:20.04"
.x86_64-linux-centos7:
tags:
- x86_64-linux
image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-centos7:$DOCKER_REV"
.x86_64-linux-fedora33:
tags:
- x86_64-linux
image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-fedora33:$DOCKER_REV"
.x86_64-linux-alpine:
tags:
- x86_64-linux
image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-alpine3_12:$DOCKER_REV"
######################
# aarch64 linux deb10
######################
build-aarch64-linux-deb10:
extends:
- .build
- .aarch64-linux
before_script:
- sudo apt update
- sudo apt install -y patchelf tree
variables:
ADD_CABAL_ARGS: ""
tar-aarch64-linux-deb10:
extends:
- .artifacts
- .aarch64-linux
stage: tar
needs: ["build-aarch64-linux-deb10"]
script:
- ./.gitlab/tar.sh
variables:
TARBALL_ARCHIVE_SUFFIX: aarch64-deb10-linux
TARBALL_EXT: tar.xz
test-aarch64-linux-deb10:
extends:
- .test
- .aarch64-linux
needs: ["tar-aarch64-linux-deb10"]
before_script:
- sudo apt update
- sudo apt install -y tree
######################
# armv7 linux deb10
######################
build-armv7-linux-deb10:
extends:
- .build
- .armv7-linux
before_script:
- sudo apt update
- sudo apt install -y patchelf tree
variables:
ADD_CABAL_ARGS: ""
tar-armv7-linux-deb10:
extends:
- .artifacts
- .armv7-linux
stage: tar
needs: ["build-armv7-linux-deb10"]
script:
- ./.gitlab/tar.sh
variables:
TARBALL_ARCHIVE_SUFFIX: armv7-deb10-linux
TARBALL_EXT: tar.xz
test-armv7-linux-deb10:
extends:
- .test
- .armv7-linux
needs: ["tar-armv7-linux-deb10"]
before_script:
- sudo apt update
- sudo apt install -y tree
###########################
# x86_64 linux ubuntu18.04
###########################
build-x86_64-linux-ubuntu18.04:
extends:
- .build
- .x86_64-linux-ubuntu18.04
before_script:
- apt update
- apt install -y build-essential curl libffi-dev libffi6 libgmp-dev libgmp10 libncurses-dev libncurses5 libtinfo5 zlib1g-dev patchelf tree
variables:
ADD_CABAL_ARGS: "--enable-split-sections"
tar-x86_64-linux-ubuntu18.04:
extends:
- .artifacts
- .x86_64-linux-ubuntu18.04
stage: tar
needs: ["build-x86_64-linux-ubuntu18.04"]
script:
- ./.gitlab/tar.sh
variables:
TARBALL_ARCHIVE_SUFFIX: x86_64-ubuntu18.04-linux
TARBALL_EXT: tar.xz
before_script:
- apt update
- apt install -y make tar xz-utils curl
test-x86_64-linux-ubuntu18.04:
extends:
- .test
- .x86_64-linux-ubuntu18.04
needs: ["tar-x86_64-linux-ubuntu18.04"]
before_script:
- apt update
- apt install -y tree patchelf make curl build-essential
###########################
# x86_64 linux ubuntu20.04
###########################
build-x86_64-linux-ubuntu20.04:
extends:
- .build
- .x86_64-linux-ubuntu20.04
before_script:
- apt update
- apt install -y build-essential curl libffi-dev libffi7 libgmp-dev libgmp10 libncurses-dev libncurses5 libtinfo5 zlib1g-dev patchelf tree
variables:
ADD_CABAL_ARGS: "--enable-split-sections"
tar-x86_64-linux-ubuntu20.04:
extends:
- .artifacts
- .x86_64-linux-ubuntu20.04
stage: tar
needs: ["build-x86_64-linux-ubuntu20.04"]
script:
- ./.gitlab/tar.sh
variables:
TARBALL_ARCHIVE_SUFFIX: x86_64-ubuntu20.04-linux
TARBALL_EXT: tar.xz
before_script:
- apt update
- apt install -y make tar xz-utils curl
test-x86_64-linux-ubuntu20.04:
extends:
- .test
- .x86_64-linux-ubuntu20.04
needs: ["tar-x86_64-linux-ubuntu20.04"]
before_script:
- apt update
- apt install -y tree patchelf make curl build-essential
######################
# x86_64 linux deb10
######################
build-x86_64-linux-deb10:
extends:
- .build
- .x86_64-linux-deb10
before_script:
- sudo apt update
- sudo apt install -y patchelf tree
variables:
ADD_CABAL_ARGS: "--enable-split-sections"
tar-x86_64-linux-deb10:
extends:
- .artifacts
- .x86_64-linux-deb10
stage: tar
needs: ["build-x86_64-linux-deb10"]
script:
- ./.gitlab/tar.sh
variables:
TARBALL_ARCHIVE_SUFFIX: x86_64-deb10-linux
TARBALL_EXT: tar.xz
test-x86_64-linux-deb10:
extends:
- .test
- .x86_64-linux-deb10
needs: ["tar-x86_64-linux-deb10"]
before_script:
- sudo apt update
- sudo apt install -y tree
######################
# x86_64 linux deb9
######################
build-x86_64-linux-deb9:
extends:
- .build
- .x86_64-linux-deb9
before_script:
- sudo apt update
- sudo apt install -y patchelf tree
variables:
ADD_CABAL_ARGS: "--enable-split-sections"
tar-x86_64-linux-deb9:
extends:
- .artifacts
- .x86_64-linux-deb9
stage: tar
needs: ["build-x86_64-linux-deb9"]
script:
- ./.gitlab/tar.sh
variables:
TARBALL_ARCHIVE_SUFFIX: x86_64-deb9-linux
TARBALL_EXT: tar.xz
test-x86_64-linux-deb9:
extends:
- .test
- .x86_64-linux-deb9
needs: ["tar-x86_64-linux-deb9"]
before_script:
- sudo apt update
- sudo apt install -y tree
######################
# x86_64 linux centos7
######################
build-x86_64-linux-centos7:
extends:
- .build
- .x86_64-linux-centos7
before_script:
- sudo yum install -y epel-release
- sudo yum install -y patchelf tree
variables:
ADD_CABAL_ARGS: "--enable-split-sections"
tar-x86_64-linux-centos7:
extends:
- .artifacts
- .x86_64-linux-centos7
stage: tar
needs: ["build-x86_64-linux-centos7"]
script:
- ./.gitlab/tar.sh
variables:
TARBALL_ARCHIVE_SUFFIX: x86_64-centos7-linux
TARBALL_EXT: tar.xz
test-x86_64-linux-centos7:
extends:
- .test
- .x86_64-linux-centos7
needs: ["tar-x86_64-linux-centos7"]
before_script:
- sudo yum install -y tree
######################
# x86_64 linux fedora33
######################
build-x86_64-linux-fedora33:
extends:
- .build
- .x86_64-linux-fedora33
before_script:
- sudo dnf install -y patchelf tree
variables:
ADD_CABAL_ARGS: "--enable-split-sections"
tar-x86_64-linux-fedora33:
extends:
- .artifacts
- .x86_64-linux-fedora33
stage: tar
needs: ["build-x86_64-linux-fedora33"]
script:
- ./.gitlab/tar.sh
variables:
TARBALL_ARCHIVE_SUFFIX: x86_64-fedora33-linux
TARBALL_EXT: tar.xz
test-x86_64-linux-fedora33:
extends:
- .test
- .x86_64-linux-fedora33
needs: ["tar-x86_64-linux-fedora33"]
before_script:
- sudo dnf install -y tree
######################
# x86_64 linux alpine
######################
build-x86_64-linux-alpine:
extends:
- .build
- .x86_64-linux-alpine
before_script:
- sudo apk add --no-cache tar zlib zlib-dev zlib-static bzip2 bzip2-dev bzip2-static gmp gmp-dev xz xz-dev ncurses-static patchelf findutils tree
variables:
ADD_CABAL_ARGS: "--enable-split-sections --enable-executable-static"
tar-x86_64-linux-alpine:
extends:
- .artifacts
- .x86_64-linux-alpine
stage: tar
needs: ["build-x86_64-linux-alpine"]
before_script:
- sudo apk add --no-cache tar zlib zlib-dev zlib-static bzip2 bzip2-dev bzip2-static gmp gmp-dev xz xz-dev ncurses-static
script:
- ./.gitlab/tar.sh
variables:
TARBALL_ARCHIVE_SUFFIX: x86_64-alpine3.12-linux
TARBALL_EXT: tar.xz
test-x86_64-linux-alpine:
extends:
- .test
- .x86_64-linux-alpine
needs: ["tar-x86_64-linux-alpine"]
before_script:
- sudo apk add --no-cache tar zlib zlib-dev zlib-static bzip2 bzip2-dev bzip2-static gmp gmp-dev xz xz-dev ncurses-static tree
######################
# x86_64 freebsd 12
######################
build-x86_64-freebsd12:
extends: .build
before_script:
- sudo pkg update
- sudo pkg install --yes patchelf gmake tree binutils
tags:
- x86_64-freebsd12
variables:
ADD_CABAL_ARGS: "--enable-split-sections -j1"
tar-x86_64-freebsd12:
extends: .artifacts
stage: tar
needs: ["build-x86_64-freebsd12"]
tags:
- x86_64-freebsd12
script:
- ./.gitlab/tar.sh
variables:
TARBALL_ARCHIVE_SUFFIX: x86_64-unknown-freebsd12
TARBALL_EXT: tar.xz
test-x86_64-freebsd12:
extends: .test
needs: ["tar-x86_64-freebsd12"]
tags:
- x86_64-freebsd12
before_script:
- sudo pkg update
- sudo pkg install --yes patchelf gmake tree binutils
######################
# x86_64 freebsd 13
######################
build-x86_64-freebsd13:
extends: .build
tags:
- x86_64-freebsd13
before_script:
- sudo pkg update
- sudo pkg install --yes compat12x-amd64 patchelf gmake tree binutils
- sudo ln -s libncurses.so.6 /usr/local/lib/libncurses.so.6.2
variables:
ADD_CABAL_ARGS: "--enable-split-sections -j1"
tar-x86_64-freebsd13:
extends: .artifacts
stage: tar
needs: ["build-x86_64-freebsd13"]
tags:
- x86_64-freebsd13
script:
- ./.gitlab/tar.sh
variables:
TARBALL_ARCHIVE_SUFFIX: x86_64-unknown-freebsd13
TARBALL_EXT: tar.xz
test-x86_64-freebsd13:
extends: .test
needs: ["tar-x86_64-freebsd13"]
tags:
- x86_64-freebsd13
before_script:
- sudo pkg update
- sudo pkg install --yes compat12x-amd64 gmake tree binutils
- sudo ln -s libncurses.so.6 /usr/local/lib/libncurses.so.6.2
######################
# x86_64 darwin
######################
build-x86_64-darwin:
extends: .build
tags:
- x86_64-darwin-m1
variables:
ADD_CABAL_ARGS: ""
NIX_SYSTEM: x86_64-darwin
script: |
/bin/bash ./.gitlab/ci.sh
tar-x86_64-darwin:
extends: .artifacts
stage: tar
needs: ["build-x86_64-darwin"]
tags:
- x86_64-darwin-m1
script: |
/bin/bash ./.gitlab/tar.sh
variables:
TARBALL_ARCHIVE_SUFFIX: x86_64-apple-darwin
TARBALL_EXT: tar.xz
NIX_SYSTEM: x86_64-darwin
test-x86_64-darwin:
extends: .test
needs: ["tar-x86_64-darwin"]
tags:
- x86_64-darwin-m1
script: |
/bin/bash .gitlab/test.sh
variables:
NIX_SYSTEM: x86_64-darwin
######################
# aarch64 darwin
######################
build-aarch64-darwin:
extends: .build
stage: build
tags:
- aarch64-darwin-m1
script: |
arch -arm64 /bin/bash ./.gitlab/ci.sh
variables:
MACOSX_DEPLOYMENT_TARGET: "10.7"
ADD_CABAL_ARGS: ""
NIX_SYSTEM: aarch64-darwin
tar-aarch64-darwin:
extends: .artifacts
stage: tar
needs: ["build-aarch64-darwin"]
tags:
- aarch64-darwin-m1
script:
- arch -arm64 /bin/bash ./.gitlab/tar.sh
variables:
TARBALL_ARCHIVE_SUFFIX: aarch64-apple-darwin
TARBALL_EXT: tar.xz
NIX_SYSTEM: aarch64-darwin
test-aarch64-darwin:
extends: .test
needs: ["tar-aarch64-darwin"]
tags:
- aarch64-darwin-m1
script: |
arch -arm64 /bin/bash ./.gitlab/test.sh
variables:
NIX_SYSTEM: aarch64-darwin
######################
# x86_64 windows
######################
build-x86_64-windows:
extends: .build
tags:
- new-x86_64-windows
script:
- $env:CHERE_INVOKING = "yes"
- bash '-lc' "ADD_CABAL_ARGS=$env:ADD_CABAL_ARGS GHC_VERSION=$env:GHC_VERSION CABAL_INSTALL_VERSION=$CABAL_INSTALL_VERSION .gitlab/ci.sh"
variables:
ADD_CABAL_ARGS: ""
tar-x86_64-windows:
extends: .artifacts
stage: tar
needs: ["build-x86_64-windows"]
tags:
- new-x86_64-windows
script:
- $env:CHERE_INVOKING = "yes"
- bash '-lc' "TARBALL_ARCHIVE_SUFFIX=$env:TARBALL_ARCHIVE_SUFFIX TARBALL_EXT=$env:TARBALL_EXT .gitlab/tar.sh"
variables:
TARBALL_ARCHIVE_SUFFIX: x86_64-unknown-mingw32
TARBALL_EXT: zip