forked from coq/coq
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathci-basic-overlay.sh
550 lines (451 loc) · 22.9 KB
/
ci-basic-overlay.sh
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
#!/usr/bin/env bash
# This is the list of repositories used by the CI scripts, unless overridden
# by a call to the "overlay" function in ci-common
declare -a projects # the list of project repos that can be be overlayed
# checks if the given argument is a known project
function is_in_projects {
for x in "${projects[@]}"; do
if [ "$1" = "$x" ]; then return 0; fi;
done
return 1
}
# project <name> <giturl> <ref> [<archiveurl>]
# [<archiveurl>] defaults to <giturl>/archive on github.com
# and <giturl>/-/archive on gitlab
function project {
local var_ref=${1}_CI_REF
local var_giturl=${1}_CI_GITURL
local var_archiveurl=${1}_CI_ARCHIVEURL
local giturl=$2
local ref=$3
local archiveurl=$4
case $giturl in
*github.com*) archiveurl=${archiveurl:-$giturl/archive} ;;
*gitlab*) archiveurl=${archiveurl:-$giturl/-/archive} ;;
esac
# register the project in the list of projects
projects[${#projects[*]}]=$1
# bash idiom for setting a variable if not already set
: "${!var_ref:=$ref}"
: "${!var_giturl:=$giturl}"
: "${!var_archiveurl:=$archiveurl}"
}
# subproject <name> <parent project> <submodulefolder> <submodule giturl> <submodule branch>
# In the case of nested submodules, each subproject should be declared
# a subproject of its immediate parent, to ensure overlays are applied
# in the right order
function subproject {
local var_parent_project=${1}_CI_PARENT_PROJECT
local var_submodule_folder=${1}_CI_SUBMODULE_FOLDER
local var_submodule_giturl=${1}_CI_SUBMODULE_GITURL
local var_submodule_branch=${1}_CI_SUBMODULE_BRANCH
local parent_project=$2
local submodule_folder=$3
local submodule_giturl=$4
local submodule_branch=$5
# register the project in the list of projects
projects[${#projects[*]}]=$1
: "${!var_parent_project:=$parent_project}"
: "${!var_submodule_folder:=$submodule_folder}"
: "${!var_submodule_giturl:=$submodule_giturl}"
: "${!var_submodule_branch:=$submodule_branch}"
}
########################################################################
# MathComp
########################################################################
project mathcomp "https://github.com/math-comp/math-comp" "master"
# Contact @CohenCyril, @proux01 on github
project fourcolor "https://github.com/math-comp/fourcolor" "master"
# Contact @ybertot, @proux01 on github
project oddorder "https://github.com/math-comp/odd-order" "master"
# Contact @gares, @proux01 on github
project mczify "https://github.com/math-comp/mczify" "master"
# Contact @pi8027 on github
project finmap "https://github.com/math-comp/finmap" "master"
# Contact @CohenCyril on github
project bigenough "https://github.com/math-comp/bigenough" "master"
# Contact @CohenCyril on github
project analysis "https://github.com/math-comp/analysis" "master"
# Contact @affeldt-aist, @CohenCyril on github
########################################################################
# UniMath
########################################################################
project unimath "https://github.com/UniMath/UniMath" "master"
# Contact @benediktahrens, @m-lindgren, @nmvdw, @rmatthes on github
########################################################################
# Unicoq + Mtac2
########################################################################
project unicoq "https://github.com/unicoq/unicoq" "master"
# Contact @beta-ziliani, @Janno, @mattam82 on github
project mtac2 "https://github.com/Mtac2/Mtac2" "master"
# Contact @beta-ziliani, @Janno, @mattam82 on github
########################################################################
# Mathclasses + Corn
########################################################################
project math_classes "https://github.com/coq-community/math-classes" "master"
# Contact @Lysxia and @spitters on github
project corn "https://github.com/coq-community/corn" "master"
# Contact @Lysxia and @spitters on github
########################################################################
# Iris
########################################################################
# NB: stdpp and Iris refs are gotten from the opam files in the Iris and
# iris_examples repos respectively. So just getting a fix landed in stdpp or
# Iris is not enough. Ping @RalfJung and @robbertkrebbers if you need the
# versions of stdpp or Iris to be bumped. Perennial also has its own pinned
# versions of stdpp and Iris; ping @tchajed and @zeldovich to get that bumped.
project stdpp "https://gitlab.mpi-sws.org/iris/stdpp" ""
# Contact @RalfJung, @robbertkrebbers on github
project iris "https://gitlab.mpi-sws.org/iris/iris" ""
# Contact @RalfJung, @robbertkrebbers on github
project autosubst "https://github.com/coq-community/autosubst" "master"
# Contact @RalfJung, @co-dan on github
project iris_examples "https://gitlab.mpi-sws.org/iris/examples" "master"
# Contact @RalfJung, @robbertkrebbers on github
########################################################################
# HoTT
########################################################################
project hott "https://github.com/HoTT/HoTT" "master"
# Contact @Alizter, @jdchristensen on github
########################################################################
# CoqHammer
########################################################################
project coqhammer "https://github.com/lukaszcz/coqhammer" "master"
# Contact @lukaszcz on github
########################################################################
# Flocq
########################################################################
project flocq "https://gitlab.inria.fr/flocq/flocq" "master"
# Contact @silene on github
########################################################################
# coq-performance-tests
########################################################################
project coq_performance_tests "https://github.com/coq-community/coq-performance-tests" "master"
# Contact @JasonGross on github
########################################################################
# coq-tools
########################################################################
project coq_tools "https://github.com/JasonGross/coq-tools" "master"
# Contact @JasonGross on github
########################################################################
# Coquelicot
########################################################################
project coquelicot "https://gitlab.inria.fr/coquelicot/coquelicot" "master"
# Contact @silene on github
########################################################################
# CompCert
########################################################################
project compcert "https://github.com/AbsInt/CompCert" "master"
# Contact @xavierleroy on github
########################################################################
# VST
########################################################################
project vst "https://github.com/PrincetonUniversity/VST" "master"
# Contact @andrew-appel on github
########################################################################
# cross-crypto
########################################################################
project cross_crypto "https://github.com/mit-plv/cross-crypto" "master"
# Contact @andres-erbsen on github
########################################################################
# rewriter
########################################################################
project rewriter "https://github.com/mit-plv/rewriter" "master"
# Contact @JasonGross on github
########################################################################
# fiat_parsers
########################################################################
project fiat_parsers "https://github.com/mit-plv/fiat" "master"
# Contact @JasonGross on github
########################################################################
# fiat_crypto_legacy
########################################################################
project fiat_crypto_legacy "https://github.com/mit-plv/fiat-crypto" "sp2019latest"
# Contact @JasonGross on github
########################################################################
# fiat_crypto
########################################################################
project fiat_crypto "https://github.com/mit-plv/fiat-crypto" "master"
# Contact @andres-erbsen, @JasonGross on github
# bedrock2, coqutil, rupicola, kami, riscv_coq
# fiat-crypto is not guaranteed to build with the latest version of
# bedrock2, so we use the pinned version of bedrock2 for fiat-crypto
# overlays do not have to follow suite
subproject rupicola fiat_crypto "rupicola" "https://github.com/mit-plv/rupicola" "master"
subproject bedrock2 rupicola "bedrock2" "https://github.com/mit-plv/bedrock2" "master"
subproject coqutil bedrock2 "deps/coqutil" "https://github.com/mit-plv/coqutil" "master"
subproject kami bedrock2 "deps/kami" "https://github.com/mit-plv/kami" "rv32i"
subproject riscv_coq bedrock2 "deps/riscv-coq" "https://github.com/mit-plv/riscv-coq" "master"
# Contact @samuelgruetter, @andres-erbsen on github
########################################################################
# coq_dpdgraph
########################################################################
project coq_dpdgraph "https://github.com/coq-community/coq-dpdgraph" "coq-master"
# Contact @Karmaki, @ybertot on github
########################################################################
# CoLoR
########################################################################
project color "https://github.com/fblanqui/color" "master"
# Contact @fblanqui on github
########################################################################
# TLC
########################################################################
project tlc "https://github.com/charguer/tlc" "master-for-coq-ci"
# Contact @charguer on github
########################################################################
# Bignums
########################################################################
project bignums "https://github.com/coq/bignums" "master"
# Contact @erikmd, @proux01 on github
########################################################################
# coqprime
########################################################################
project coqprime "https://github.com/thery/coqprime" "master"
# Contact @thery on github
########################################################################
# bbv
########################################################################
project bbv "https://github.com/mit-plv/bbv" "master"
# Contact @JasonGross, @samuelgruetter on github
########################################################################
# Coinduction
########################################################################
project coinduction "https://github.com/damien-pous/coinduction" "master"
# Contact @damien-pous on github
########################################################################
# coq-lsp
########################################################################
project coq_lsp "https://github.com/ejgallego/coq-lsp" "main"
# Contact @ejgallego on github
########################################################################
# Equations
########################################################################
project equations "https://github.com/mattam82/Coq-Equations" "main"
# Contact @mattam82 on github
########################################################################
# Elpi + Hierarchy Builder
########################################################################
project elpi "https://github.com/LPCIC/coq-elpi" "master"
# Contact @gares on github
project hierarchy_builder "https://github.com/math-comp/hierarchy-builder" "master"
# Contact @CohenCyril, @gares on github
########################################################################
# Engine-Bench
########################################################################
project engine_bench "https://github.com/mit-plv/engine-bench" "master"
# Contact @JasonGross on github
########################################################################
# fcsl-pcm
########################################################################
project fcsl_pcm "https://github.com/imdea-software/fcsl-pcm" "master"
# Contact @aleksnanevski, @clayrat on github
########################################################################
# ext-lib
########################################################################
project ext_lib "https://github.com/coq-community/coq-ext-lib" "master"
# Contact @gmalecha, @liyishuai on github
########################################################################
# simple-io
########################################################################
project simple_io "https://github.com/Lysxia/coq-simple-io" "master"
# Contact @Lysxia, @liyishuai on github
########################################################################
# quickchick
########################################################################
project quickchick "https://github.com/QuickChick/QuickChick" "master"
# Contact @lemonidas, @Lysxia, @liyishuai on github
########################################################################
# reduction-effects
########################################################################
project reduction_effects "https://github.com/coq-community/reduction-effects" "master"
# Contact @liyishuai, @JasonGross on github
########################################################################
# menhirlib
########################################################################
# Note: menhirlib is now in subfolder coq-menhirlib of menhir
project menhirlib "https://gitlab.inria.fr/fpottier/menhir" "master"
# Contact @fpottier, @jhjourdan on github
########################################################################
# coq-neural-net-interp
########################################################################
project neural_net_interp "https://github.com/JasonGross/neural-net-coq-interp" "tested"
# Contact @JasonGross on github
########################################################################
# aac_tactics
########################################################################
project aac_tactics "https://github.com/coq-community/aac-tactics" "master"
# Contact @palmskog on github
########################################################################
# paco
########################################################################
project paco "https://github.com/snu-sf/paco" "master"
# Contact @minkiminki on github
########################################################################
# coq-itree
########################################################################
project itree "https://github.com/DeepSpec/InteractionTrees" "master"
# Contact @Lysxia on github
########################################################################
# coq-itree_io
########################################################################
project itree_io "https://github.com/Lysxia/coq-itree-io" "master"
# Contact @Lysxia, @liyishuai on github
########################################################################
# coq-ceres
########################################################################
project ceres "https://github.com/Lysxia/coq-ceres" "master"
# Contact @Lysxia on github
########################################################################
# coq-parsec
########################################################################
project parsec "https://github.com/liyishuai/coq-parsec" "master"
# Contact @liyishuai on github
########################################################################
# coq-json
########################################################################
project json "https://github.com/liyishuai/coq-json" "master"
# Contact @liyishuai on github
########################################################################
# coq-async-test
########################################################################
project async_test "https://github.com/liyishuai/coq-async-test" "master"
# Contact @liyishuai on github
########################################################################
# coq-http
########################################################################
project http "https://github.com/liyishuai/coq-http" "master"
# Contact @liyishuai on github
########################################################################
# paramcoq
########################################################################
project paramcoq "https://github.com/coq-community/paramcoq" "master"
# Contact @proux01 on github
########################################################################
# relation_algebra
########################################################################
project relation_algebra "https://github.com/damien-pous/relation-algebra" "master"
# Contact @damien-pous on github
########################################################################
# StructTact + InfSeqExt + Cheerios + Verdi + Verdi Raft
########################################################################
project struct_tact "https://github.com/uwplse/StructTact" "master"
# Contact @palmskog on github
project inf_seq_ext "https://github.com/DistributedComponents/InfSeqExt" "master"
# Contact @palmskog on github
project cheerios "https://github.com/uwplse/cheerios" "master"
# Contact @palmskog on github
project verdi "https://github.com/uwplse/verdi" "master"
# Contact @palmskog on github
project verdi_raft "https://github.com/uwplse/verdi-raft" "master"
# Contact @palmskog on github
########################################################################
# Stdlib
########################################################################
project stdlib "https://github.com/coq/stdlib" "master"
# Contact TODO on github
########################################################################
# argosy
########################################################################
project argosy "https://github.com/mit-pdos/argosy" "master"
# Contact @tchajed on github
########################################################################
# ATBR
########################################################################
project atbr "https://github.com/coq-community/atbr" "master"
# Contact @palmskog, @tchajed on github
########################################################################
# perennial
########################################################################
project perennial "https://github.com/mit-pdos/perennial" "coq/tested"
# Contact @upamanyus, @RalfJung, @tchajed on github
# PRs to fix Perennial failures should be submitted against the Perennial
# `master` branch. `coq/tested` is automatically updated every night to the
# `master` branch if CI on `master` is green. This is to avoid breaking Coq CI
# when Perennial CI breaks.
########################################################################
# metacoq
########################################################################
project metacoq "https://github.com/MetaCoq/metacoq" "main"
# Contact @mattam82, @yforster on github
########################################################################
# SF suite
########################################################################
project sf "https://github.com/DeepSpec/sf" "master"
# Contact @bcpierce00, @liyishuai on github
########################################################################
# Coqtail
########################################################################
project coqtail "https://github.com/whonore/Coqtail" "main"
# Contact @whonore on github
########################################################################
# Deriving
########################################################################
project deriving "https://github.com/arthuraa/deriving" "master"
# Contact @arthuraa on github
########################################################################
# VsCoq
########################################################################
project vscoq "https://github.com/coq-community/vscoq" "main"
# Contact @rtetley, @gares on github
########################################################################
# category-theory
########################################################################
project category_theory "https://github.com/jwiegley/category-theory" "master"
# Contact @jwiegley on github
########################################################################
# itauto
########################################################################
project itauto "https://gitlab.inria.fr/fbesson/itauto" "master"
# Contact @fajb on github
########################################################################
# Mathcomp-word
########################################################################
project mathcomp_word "https://github.com/jasmin-lang/coqword" "main"
# Contact @vbgl, @strub on github
########################################################################
# Jasmin
########################################################################
project jasmin "https://github.com/jasmin-lang/jasmin" "main"
# Contact @vbgl, @bgregoir on github
########################################################################
# Lean Importer
########################################################################
project lean_importer "https://github.com/SkySkimmer/coq-lean-import" "master"
# Contact @SkySkimmer on github
########################################################################
# SMTCoq
########################################################################
project smtcoq "https://github.com/smtcoq/smtcoq" "coq-master"
# Contact @ckeller on github
project smtcoq_trakt "https://github.com/smtcoq/smtcoq" "with-trakt-coq-master"
# Contact @ckeller on github
########################################################################
# Stalmarck
########################################################################
project stalmarck "https://github.com/coq-community/stalmarck" "master"
# Contact @palmskog on github
########################################################################
# Tactician
########################################################################
project tactician "https://github.com/coq-tactician/coq-tactician" "coqdev"
# Contact @LasseBlaauwbroek on github
########################################################################
# Ltac2 compiler
########################################################################
project ltac2_compiler "https://github.com/SkySkimmer/coq-ltac2-compiler" "main"
# Contact @SkySkimmer on github
########################################################################
# Waterproof
########################################################################
project waterproof "https://github.com/impermeable/coq-waterproof" "coq-master"
# Contact @jellooo038, @jim-portegies on github
########################################################################
# Autosubst (2) OCaml
########################################################################
project autosubst_ocaml "https://github.com/uds-psl/autosubst-ocaml" "master"
# Contact @yforster on github
########################################################################
# Trakt
########################################################################
project trakt "https://github.com/ecranceMERCE/trakt" "coq-master"
# Contact @ckeller, @louiseddp on github