-
Notifications
You must be signed in to change notification settings - Fork 1
547 lines (545 loc) · 14 KB
/
publish.yaml
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
# This file is generated by pipeline.js
name: Publish
on:
push:
branches:
- main
jobs:
calc:
runs-on: ubuntu-latest
outputs:
buildLanguages: ${{ steps.check.outputs.buildLanguages }}
buildBase: ${{ steps.check.outputs.buildBase }}
dccClojure: ${{ steps.check.outputs.dccClojure }}
dccCrystal: ${{ steps.check.outputs.dccCrystal }}
dccDart: ${{ steps.check.outputs.dccDart }}
dccDeno: ${{ steps.check.outputs.dccDeno }}
dccElixir: ${{ steps.check.outputs.dccElixir }}
dccElm: ${{ steps.check.outputs.dccElm }}
dccErlang: ${{ steps.check.outputs.dccErlang }}
dccFactor: ${{ steps.check.outputs.dccFactor }}
dccGo: ${{ steps.check.outputs.dccGo }}
dccGroovy: ${{ steps.check.outputs.dccGroovy }}
dccHaskell: ${{ steps.check.outputs.dccHaskell }}
dccIdris2: ${{ steps.check.outputs.dccIdris2 }}
dccIo: ${{ steps.check.outputs.dccIo }}
dccJavascriptPnpm: ${{ steps.check.outputs.dccJavascriptPnpm }}
dccJavascript: ${{ steps.check.outputs.dccJavascript }}
dccJulia: ${{ steps.check.outputs.dccJulia }}
dccKoka: ${{ steps.check.outputs.dccKoka }}
dccKotlin: ${{ steps.check.outputs.dccKotlin }}
dccLua: ${{ steps.check.outputs.dccLua }}
dccMoonscript: ${{ steps.check.outputs.dccMoonscript }}
dccOdin: ${{ steps.check.outputs.dccOdin }}
dccPerl: ${{ steps.check.outputs.dccPerl }}
dccPony: ${{ steps.check.outputs.dccPony }}
dccProlog: ${{ steps.check.outputs.dccProlog }}
dccPython: ${{ steps.check.outputs.dccPython }}
dccRaku: ${{ steps.check.outputs.dccRaku }}
dccRuby: ${{ steps.check.outputs.dccRuby }}
dccScala: ${{ steps.check.outputs.dccScala }}
dccTcl: ${{ steps.check.outputs.dccTcl }}
dccV: ${{ steps.check.outputs.dccV }}
dccZig: ${{ steps.check.outputs.dccZig }}
env:
commits: ${{ toJSON(github.event.commits) }}
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- run: npm exec pnpm -- i --ignore-scripts
name: npm install
- run: |-
npm run lint
npm run format
npm run synchronize-ci
git diff --exit-code
name: Check Integrity
- run: |-
noOfCommits=$(echo $commits | jq ". | length")
git diff --name-only HEAD~$noOfCommits
name: Report Changed Files
- id: calculate
run: >-
noOfCommits=$(echo $commits | jq ". | length")
git diff --name-only HEAD~$noOfCommits | node check-lang-ci.js >>
$GITHUB_OUTPUT
cat $GITHUB_OUTPUT
name: Calculate Required Jobs
bundle:
uses: ./.github/workflows/bundle.yaml
secrets: inherit
features:
needs:
- calc
if: ${{ ! failure() && ! cancelled() && always() }}
uses: ./.github/workflows/features.yaml
with:
skip: ${{ needs.calc.outputs.buildBase == 'false' }}
secrets: inherit
baseDebian:
needs:
- calc
- features
if: ${{ ! failure() && ! cancelled() && always() }}
name: base://debian
uses: ./.github/workflows/base.yaml
with:
name: debian
skip: ${{ needs.calc.outputs.buildBase == 'false' }}
secrets: inherit
baseDebianOld:
needs:
- calc
- features
if: ${{ ! failure() && ! cancelled() && always() }}
name: base://debian-old
uses: ./.github/workflows/base.yaml
with:
name: debian-old
skip: ${{ needs.calc.outputs.buildBase == 'false' }}
secrets: inherit
baseJava:
needs:
- calc
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: base://java
uses: ./.github/workflows/base.yaml
with:
name: java
skip: ${{ needs.calc.outputs.buildBase == 'false' }}
secrets: inherit
baseNode:
needs:
- calc
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: base://node
uses: ./.github/workflows/base.yaml
with:
name: node
skip: ${{ needs.calc.outputs.buildBase == 'false' }}
secrets: inherit
baseUbuntu:
needs:
- calc
- features
if: ${{ ! failure() && ! cancelled() && always() }}
name: base://ubuntu
uses: ./.github/workflows/base.yaml
with:
name: ubuntu
skip: ${{ needs.calc.outputs.buildBase == 'false' }}
secrets: inherit
dccClojure:
needs:
- calc
- bundle
- baseJava
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://clojure
uses: ./.github/workflows/dcc.yaml
with:
name: clojure
skip: ${{ needs.calc.outputs.dccClojure == 'false' }}
secrets: inherit
dccCrystal:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://crystal
uses: ./.github/workflows/dcc.yaml
with:
name: crystal
skip: ${{ needs.calc.outputs.dccCrystal == 'false' }}
secrets: inherit
dccDart:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://dart
uses: ./.github/workflows/dcc.yaml
with:
name: dart
skip: ${{ needs.calc.outputs.dccDart == 'false' }}
secrets: inherit
dccDeno:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://deno
uses: ./.github/workflows/dcc.yaml
with:
name: deno
skip: ${{ needs.calc.outputs.dccDeno == 'false' }}
secrets: inherit
dccElixir:
needs:
- calc
- bundle
- dccErlang
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://elixir
uses: ./.github/workflows/dcc.yaml
with:
name: elixir
skip: ${{ needs.calc.outputs.dccElixir == 'false' }}
secrets: inherit
dccElm:
needs:
- calc
- bundle
- baseNode
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://elm
uses: ./.github/workflows/dcc.yaml
with:
name: elm
skip: ${{ needs.calc.outputs.dccElm == 'false' }}
secrets: inherit
dccErlang:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://erlang
uses: ./.github/workflows/dcc.yaml
with:
name: erlang
skip: ${{ needs.calc.outputs.dccErlang == 'false' }}
secrets: inherit
dccFactor:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://factor
uses: ./.github/workflows/dcc.yaml
with:
name: factor
skip: ${{ needs.calc.outputs.dccFactor == 'false' }}
secrets: inherit
dccGo:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://go
uses: ./.github/workflows/dcc.yaml
with:
name: go
skip: ${{ needs.calc.outputs.dccGo == 'false' }}
secrets: inherit
dccGroovy:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://groovy
uses: ./.github/workflows/dcc.yaml
with:
name: groovy
skip: ${{ needs.calc.outputs.dccGroovy == 'false' }}
secrets: inherit
dccHaskell:
needs:
- calc
- bundle
- baseDebianOld
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://haskell
uses: ./.github/workflows/dcc.yaml
with:
name: haskell
skip: ${{ needs.calc.outputs.dccHaskell == 'false' }}
secrets: inherit
dccIdris2:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://idris2
uses: ./.github/workflows/dcc.yaml
with:
name: idris2
skip: ${{ needs.calc.outputs.dccIdris2 == 'false' }}
secrets: inherit
dccIo:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://io
uses: ./.github/workflows/dcc.yaml
with:
name: io
skip: ${{ needs.calc.outputs.dccIo == 'false' }}
secrets: inherit
dccJavascriptPnpm:
needs:
- calc
- bundle
- dccJavascript
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://javascript-pnpm
uses: ./.github/workflows/dcc.yaml
with:
name: javascript-pnpm
skip: ${{ needs.calc.outputs.dccJavascriptPnpm == 'false' }}
secrets: inherit
dccJavascript:
needs:
- calc
- bundle
- baseNode
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://javascript
uses: ./.github/workflows/dcc.yaml
with:
name: javascript
skip: ${{ needs.calc.outputs.dccJavascript == 'false' }}
secrets: inherit
dccJulia:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://julia
uses: ./.github/workflows/dcc.yaml
with:
name: julia
skip: ${{ needs.calc.outputs.dccJulia == 'false' }}
secrets: inherit
dccKoka:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://koka
uses: ./.github/workflows/dcc.yaml
with:
name: koka
skip: ${{ needs.calc.outputs.dccKoka == 'false' }}
secrets: inherit
dccKotlin:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://kotlin
uses: ./.github/workflows/dcc.yaml
with:
name: kotlin
skip: ${{ needs.calc.outputs.dccKotlin == 'false' }}
secrets: inherit
dccLua:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://lua
uses: ./.github/workflows/dcc.yaml
with:
name: lua
skip: ${{ needs.calc.outputs.dccLua == 'false' }}
secrets: inherit
dccMoonscript:
needs:
- calc
- bundle
- dccLua
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://moonscript
uses: ./.github/workflows/dcc.yaml
with:
name: moonscript
skip: ${{ needs.calc.outputs.dccMoonscript == 'false' }}
secrets: inherit
dccOdin:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://odin
uses: ./.github/workflows/dcc.yaml
with:
name: odin
skip: ${{ needs.calc.outputs.dccOdin == 'false' }}
secrets: inherit
dccPerl:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://perl
uses: ./.github/workflows/dcc.yaml
with:
name: perl
skip: ${{ needs.calc.outputs.dccPerl == 'false' }}
secrets: inherit
dccPony:
needs:
- calc
- bundle
- baseUbuntu
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://pony
uses: ./.github/workflows/dcc.yaml
with:
name: pony
skip: ${{ needs.calc.outputs.dccPony == 'false' }}
secrets: inherit
dccProlog:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://prolog
uses: ./.github/workflows/dcc.yaml
with:
name: prolog
skip: ${{ needs.calc.outputs.dccProlog == 'false' }}
secrets: inherit
dccPython:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://python
uses: ./.github/workflows/dcc.yaml
with:
name: python
skip: ${{ needs.calc.outputs.dccPython == 'false' }}
secrets: inherit
dccRaku:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://raku
uses: ./.github/workflows/dcc.yaml
with:
name: raku
skip: ${{ needs.calc.outputs.dccRaku == 'false' }}
secrets: inherit
dccRuby:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://ruby
uses: ./.github/workflows/dcc.yaml
with:
name: ruby
skip: ${{ needs.calc.outputs.dccRuby == 'false' }}
secrets: inherit
dccScala:
needs:
- calc
- bundle
- baseJava
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://scala
uses: ./.github/workflows/dcc.yaml
with:
name: scala
skip: ${{ needs.calc.outputs.dccScala == 'false' }}
secrets: inherit
dccTcl:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://tcl
uses: ./.github/workflows/dcc.yaml
with:
name: tcl
skip: ${{ needs.calc.outputs.dccTcl == 'false' }}
secrets: inherit
dccV:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://v
uses: ./.github/workflows/dcc.yaml
with:
name: v
skip: ${{ needs.calc.outputs.dccV == 'false' }}
secrets: inherit
dccZig:
needs:
- calc
- bundle
- baseDebian
if: ${{ ! failure() && ! cancelled() && always() }}
name: dcc://zig
uses: ./.github/workflows/dcc.yaml
with:
name: zig
skip: ${{ needs.calc.outputs.dccZig == 'false' }}
secrets: inherit
examples:
needs:
- calc
- dccClojure
- dccCrystal
- dccDart
- dccDeno
- dccElixir
- dccElm
- dccErlang
- dccFactor
- dccGo
- dccGroovy
- dccHaskell
- dccIdris2
- dccIo
- dccJavascriptPnpm
- dccJavascript
- dccJulia
- dccKoka
- dccKotlin
- dccLua
- dccMoonscript
- dccOdin
- dccPerl
- dccPony
- dccProlog
- dccPython
- dccRaku
- dccRuby
- dccScala
- dccTcl
- dccV
- dccZig
if: ${{ ! failure() && ! cancelled() && always() }}
uses: ./.github/workflows/examples.yaml
with:
skip: ${{ needs.calc.outputs.buildLanguages == 'false' }}
secrets: inherit