forked from haskell/haskell-language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
548 lines (477 loc) · 12.8 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
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: "4ed1a4f27828ba96a34662dc954335e29b470cd2"
CABAL_INSTALL_VERSION: 3.6.2.0
.windows_matrix: &windows_matrix
matrix:
- GHC_VERSION: 8.8.4
CABAL_PROJECT: cabal.project
- GHC_VERSION: 8.10.7
CABAL_PROJECT: cabal.project
- GHC_VERSION: 9.0.2
CABAL_PROJECT: cabal-ghc90.project
- GHC_VERSION: 9.2.2
CABAL_PROJECT: cabal-ghc921.project
workflow:
rules:
- if: $CI_COMMIT_TAG
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
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-centos7:
tags:
- x86_64-linux
image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-centos7:$DOCKER_REV"
.x86_64-linux-fedora27:
tags:
- x86_64-linux
image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-fedora27:$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 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 fedora27
######################
build-x86_64-linux-fedora27:
extends:
- .build
- .x86_64-linux-fedora27
before_script:
- sudo dnf install -y patchelf tree
variables:
ADD_CABAL_ARGS: "--enable-split-sections"
tar-x86_64-linux-fedora27:
extends:
- .artifacts
- .x86_64-linux-fedora27
stage: tar
needs: ["build-x86_64-linux-fedora27"]
script:
- ./.gitlab/tar.sh
variables:
TARBALL_ARCHIVE_SUFFIX: x86_64-fedora27-linux
TARBALL_EXT: tar.xz
test-x86_64-linux-fedora27:
extends:
- .test
- .x86_64-linux-fedora27
needs: ["tar-x86_64-linux-fedora27"]
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
variables:
ADD_CABAL_ARGS: ""
before_script:
- /bin/bash ./.gitlab/brew.sh autoconf automake coreutils make tree
# CPATH https://github.com/digital-asset/ghc-lib/issues/352
script: |
export PATH="$CI_PROJECT_DIR/.brew/bin:$CI_PROJECT_DIR/.brew/sbin:$PATH"
export CPATH="/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/ffi:$CPATH"
/bin/bash ./.gitlab/ci.sh
after_script:
- rm -Rf /private/tmp/.brew_tmp
tar-x86_64-darwin:
extends: .artifacts
stage: tar
needs: ["build-x86_64-darwin"]
tags:
- x86_64-darwin
before_script:
- /bin/bash ./.gitlab/brew.sh autoconf automake coreutils make tree
script: |
export PATH="$CI_PROJECT_DIR/.brew/bin:$CI_PROJECT_DIR/.brew/sbin:$PATH"
/bin/bash ./.gitlab/tar.sh
after_script:
- rm -Rf /private/tmp/.brew_tmp
variables:
TARBALL_ARCHIVE_SUFFIX: x86_64-apple-darwin
TARBALL_EXT: tar.xz
test-x86_64-darwin:
extends: .test
needs: ["tar-x86_64-darwin"]
tags:
- x86_64-darwin
before_script:
- /bin/bash ./.gitlab/brew.sh make tree
script: |
export PATH="$CI_PROJECT_DIR/.brew/bin:$CI_PROJECT_DIR/.brew/sbin:$PATH"
/bin/bash .gitlab/test.sh
after_script:
- rm -Rf /private/tmp/.brew_tmp
######################
# aarch64 darwin
######################
build-aarch64-darwin:
extends: .artifacts:short
stage: build
tags:
- aarch64-darwin-m1
before_script:
- export HOMEBREW_CHANGE_ARCH_TO_ARM=1
- arch -arm64 /bin/bash ./.gitlab/brew.sh llvm autoconf automake coreutils make tree
# C_INCLUDE_PATH: https://gitlab.haskell.org/ghc/ghc/-/issues/20592
# CPATH https://github.com/digital-asset/ghc-lib/issues/352
script: |
export PATH="$CI_PROJECT_DIR/.brew/opt/llvm/bin:$CI_PROJECT_DIR/.brew/bin:$CI_PROJECT_DIR/.brew/sbin:$PATH"
export CC=$CI_PROJECT_DIR/.brew/opt/llvm/bin/clang
export CXX=$CI_PROJECT_DIR/.brew/opt/llvm/bin/clang++
export LD=ld
export AR=$CI_PROJECT_DIR/.brew/opt/llvm/bin/llvm-ar
export RANLIB=$CI_PROJECT_DIR/.brew/opt/llvm/bin/llvm-ranlib
export C_INCLUDE_PATH="`xcrun --show-sdk-path`/usr/include/ffi"
export CPATH="/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/ffi:$CPATH"
arch -arm64 /bin/bash ./.gitlab/ci.sh
after_script:
- rm -Rf /private/tmp/.brew_tmp
variables:
MACOSX_DEPLOYMENT_TARGET: "10.7"
ADD_CABAL_ARGS: ""
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
test-aarch64-darwin:
extends: .test
needs: ["tar-aarch64-darwin"]
tags:
- aarch64-darwin-m1
before_script:
- export HOMEBREW_CHANGE_ARCH_TO_ARM=1
- arch -arm64 /bin/bash ./.gitlab/brew.sh make tree
# C_INCLUDE_PATH: https://gitlab.haskell.org/ghc/ghc/-/issues/20592
# CPATH https://github.com/digital-asset/ghc-lib/issues/352
script: |
export PATH="$CI_PROJECT_DIR/.brew/opt/llvm/bin:$CI_PROJECT_DIR/.brew/bin:$CI_PROJECT_DIR/.brew/sbin:$PATH"
export C_INCLUDE_PATH="`xcrun --show-sdk-path`/usr/include/ffi"
export CPATH="/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/ffi:$CPATH"
arch -arm64 /bin/bash ./.gitlab/test.sh
after_script:
- rm -Rf /private/tmp/.brew_tmp
######################
# x86_64 windows
######################
build-x86_64-windows:
extends: .build
tags:
- new-x86_64-windows
parallel: *windows_matrix
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