-
Notifications
You must be signed in to change notification settings - Fork 6
699 lines (612 loc) · 25.1 KB
/
get-matrix.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
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
name: Get version matrix for tests
on:
workflow_call:
inputs:
nightly:
required: false
type: boolean
default: false
outputs:
matrix-core:
value: ${{ jobs.get-matrix.outputs.matrix-core }}
matrix-clickhouse:
value: ${{ jobs.get-matrix.outputs.matrix-clickhouse }}
matrix-greenplum:
value: ${{ jobs.get-matrix.outputs.matrix-greenplum }}
matrix-hive:
value: ${{ jobs.get-matrix.outputs.matrix-hive }}
matrix-kafka:
value: ${{ jobs.get-matrix.outputs.matrix-kafka }}
matrix-local-fs:
value: ${{ jobs.get-matrix.outputs.matrix-local-fs }}
matrix-mongodb:
value: ${{ jobs.get-matrix.outputs.matrix-mongodb }}
matrix-mssql:
value: ${{ jobs.get-matrix.outputs.matrix-mssql }}
matrix-mysql:
value: ${{ jobs.get-matrix.outputs.matrix-mysql }}
matrix-oracle:
value: ${{ jobs.get-matrix.outputs.matrix-oracle }}
matrix-postgres:
value: ${{ jobs.get-matrix.outputs.matrix-postgres }}
matrix-teradata:
value: ${{ jobs.get-matrix.outputs.matrix-teradata }}
matrix-ftp:
value: ${{ jobs.get-matrix.outputs.matrix-ftp }}
matrix-ftps:
value: ${{ jobs.get-matrix.outputs.matrix-ftps }}
matrix-hdfs:
value: ${{ jobs.get-matrix.outputs.matrix-hdfs }}
matrix-s3:
value: ${{ jobs.get-matrix.outputs.matrix-s3 }}
matrix-sftp:
value: ${{ jobs.get-matrix.outputs.matrix-sftp }}
matrix-samba:
value: ${{ jobs.get-matrix.outputs.matrix-samba }}
matrix-webdav:
value: ${{ jobs.get-matrix.outputs.matrix-webdav }}
env:
DEFAULT_PYTHON: '3.12'
jobs:
get-matrix:
name: Get version matrix based on changes in PR/commit
runs-on: ubuntu-latest
outputs:
matrix-core: ${{ toJson(fromJson(steps.matrix-core.outputs.result)[steps.key-core.outputs.key]) }}
matrix-clickhouse: ${{ toJson(fromJson(steps.matrix-clickhouse.outputs.result)[steps.key-clickhouse.outputs.key]) }}
matrix-greenplum: ${{ toJson(fromJson(steps.matrix-greenplum.outputs.result)[steps.key-greenplum.outputs.key]) }}
matrix-hive: ${{ toJson(fromJson(steps.matrix-hive.outputs.result)[steps.key-hive.outputs.key]) }}
matrix-kafka: ${{ toJson(fromJson(steps.matrix-kafka.outputs.result)[steps.key-kafka.outputs.key]) }}
matrix-local-fs: ${{ toJson(fromJson(steps.matrix-local-fs.outputs.result)[steps.key-local-fs.outputs.key]) }}
matrix-mongodb: ${{ toJson(fromJson(steps.matrix-mongodb.outputs.result)[steps.key-mongodb.outputs.key]) }}
matrix-mssql: ${{ toJson(fromJson(steps.matrix-mssql.outputs.result)[steps.key-mssql.outputs.key]) }}
matrix-mysql: ${{ toJson(fromJson(steps.matrix-mysql.outputs.result)[steps.key-mysql.outputs.key]) }}
matrix-oracle: ${{ toJson(fromJson(steps.matrix-oracle.outputs.result)[steps.key-oracle.outputs.key]) }}
matrix-postgres: ${{ toJson(fromJson(steps.matrix-postgres.outputs.result)[steps.key-postgres.outputs.key]) }}
matrix-teradata: ${{ toJson(fromJson(steps.matrix-teradata.outputs.result)[steps.key-teradata.outputs.key]) }}
matrix-ftp: ${{ toJson(fromJson(steps.matrix-ftp.outputs.result)[steps.key-ftp.outputs.key]) }}
matrix-ftps: ${{ toJson(fromJson(steps.matrix-ftps.outputs.result)[steps.key-ftps.outputs.key]) }}
matrix-hdfs: ${{ toJson(fromJson(steps.matrix-hdfs.outputs.result)[steps.key-hdfs.outputs.key]) }}
matrix-s3: ${{ toJson(fromJson(steps.matrix-s3.outputs.result)[steps.key-s3.outputs.key]) }}
matrix-sftp: ${{ toJson(fromJson(steps.matrix-sftp.outputs.result)[steps.key-sftp.outputs.key]) }}
matrix-samba: ${{ toJson(fromJson(steps.matrix-samba.outputs.result)[steps.key-samba.outputs.key]) }}
matrix-webdav: ${{ toJson(fromJson(steps.matrix-webdav.outputs.result)[steps.key-webdav.outputs.key]) }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Check if base files are changed
id: changed-base
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/base/tracked.txt
files_ignore_from_source_file: .github/workflows/data/base/ignored.txt
- name: Print base files changed
run: |
echo '${{ steps.changed-base.outputs.all_changed_files }}'
- name: Check if db-related files are changed
id: changed-db
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/db/tracked.txt
files_ignore_from_source_file: .github/workflows/data/db/ignored.txt
- name: Print db-related files changed
run: |
echo '${{ steps.changed-db.outputs.all_changed_files }}'
- name: Check if file-related files are changed
id: changed-file
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/file/tracked.txt
files_ignore_from_source_file: .github/workflows/data/file/ignored.txt
- name: Print file-related files changed
run: |
echo '${{ steps.changed-file.outputs.all_changed_files }}'
- name: Check if file-df-related files are changed
id: changed-file-df
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/file-df/tracked.txt
files_ignore_from_source_file: .github/workflows/data/file-df/ignored.txt
- name: Print file-df-related files changed
run: |
echo '${{ steps.changed-file-df.outputs.all_changed_files }}'
- name: Check if core files are changed
id: changed-core
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/core/tracked.txt
files_ignore_from_source_file: .github/workflows/data/core/ignored.txt
- name: Print core files changed
run: |
echo '${{ steps.changed-core.outputs.all_changed_files }}'
- name: Calculate Core matrix key
id: key-core
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-core.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get Core matrix
id: matrix-core
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/core/matrix.yml
- name: Check if Clickhouse files are changed
id: changed-clickhouse
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/clickhouse/tracked.txt
files_ignore_from_source_file: .github/workflows/data/clickhouse/ignored.txt
- name: Print Clickhouse files changed
run: |
echo '${{ steps.changed-clickhouse.outputs.all_changed_files }}'
- name: Calculate Clickhouse matrix key
id: key-clickhouse
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-db.outputs.any_changed }} || ${{ steps.changed-clickhouse.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get Clickhouse matrix
id: matrix-clickhouse
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/clickhouse/matrix.yml
- name: Check if Greenplum files are changed
id: changed-greenplum
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/greenplum/tracked.txt
files_ignore_from_source_file: .github/workflows/data/greenplum/ignored.txt
- name: Print Greenplum files changed
run: |
echo '${{ steps.changed-greenplum.outputs.all_changed_files }}'
- name: Calculate Greenplum matrix key
id: key-greenplum
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-db.outputs.any_changed }} || ${{ steps.changed-greenplum.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get Greenplum matrix
id: matrix-greenplum
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/greenplum/matrix.yml
- name: Check if Hive files are changed
id: changed-hive
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/hive/tracked.txt
files_ignore_from_source_file: .github/workflows/data/hive/ignored.txt
- name: Print Hive files changed
run: |
echo '${{ steps.changed-hive.outputs.all_changed_files }}'
- name: Calculate Hive matrix key
id: key-hive
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-db.outputs.any_changed }} || ${{ steps.changed-hive.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get Hive matrix
id: matrix-hive
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/hive/matrix.yml
- name: Check if Kafka files are changed
id: changed-kafka
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/kafka/tracked.txt
files_ignore_from_source_file: .github/workflows/data/kafka/ignored.txt
- name: Print Kafka files changed
run: |
echo '${{ steps.changed-kafka.outputs.all_changed_files }}'
- name: Calculate Kafka matrix key
id: key-kafka
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-db.outputs.any_changed }} || ${{ steps.changed-kafka.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get Kafka matrix
id: matrix-kafka
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/kafka/matrix.yml
- name: Check if LocalFS files are changed
id: changed-local-fs
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/local-fs/tracked.txt
files_ignore_from_source_file: .github/workflows/data/local-fs/ignored.txt
- name: Print LocalFS files changed
run: |
echo '${{ steps.changed-local-fs.outputs.all_changed_files }}'
- name: Calculate LocalFS matrix key
id: key-local-fs
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-file-df.outputs.any_changed }} || ${{ steps.changed-local-fs.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get LocalFS matrix
id: matrix-local-fs
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/local-fs/matrix.yml
- name: Check if MongoDB files are changed
id: changed-mongodb
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/mongodb/tracked.txt
files_ignore_from_source_file: .github/workflows/data/mongodb/ignored.txt
- name: Print MongoDB files changed
run: |
echo '${{ steps.changed-mongodb.outputs.all_changed_files }}'
- name: Calculate MongoDB matrix key
id: key-mongodb
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-db.outputs.any_changed }} || ${{ steps.changed-mongodb.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get MongoDB matrix
id: matrix-mongodb
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/mongodb/matrix.yml
- name: Check if MSSQL files are changed
id: changed-mssql
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/mssql/tracked.txt
files_ignore_from_source_file: .github/workflows/data/mssql/ignored.txt
- name: Print MSSQL files changed
run: |
echo '${{ steps.changed-mssql.outputs.all_changed_files }}'
- name: Calculate MSSQL matrix key
id: key-mssql
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-db.outputs.any_changed }} || ${{ steps.changed-mssql.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get MSSQL matrix
id: matrix-mssql
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/mssql/matrix.yml
- name: Check if MySQL files are changed
id: changed-mysql
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/mysql/tracked.txt
files_ignore_from_source_file: .github/workflows/data/mysql/ignored.txt
- name: Print MSSQL files changed
run: |
echo '${{ steps.changed-mysql.outputs.all_changed_files }}'
- name: Calculate MySQL matrix key
id: key-mysql
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-db.outputs.any_changed }} || ${{ steps.changed-mysql.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get MySQL matrix
id: matrix-mysql
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/mysql/matrix.yml
- name: Check if Oracle files are changed
id: changed-oracle
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/oracle/tracked.txt
files_ignore_from_source_file: .github/workflows/data/oracle/ignored.txt
- name: Print Oracle files changed
run: |
echo '${{ steps.changed-oracle.outputs.all_changed_files }}'
- name: Calculate Oracle matrix key
id: key-oracle
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-db.outputs.any_changed }} || ${{ steps.changed-oracle.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get Oracle matrix
id: matrix-oracle
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/oracle/matrix.yml
- name: Check if Postgres files are changed
id: changed-postgres
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/postgres/tracked.txt
files_ignore_from_source_file: .github/workflows/data/postgres/ignored.txt
- name: Print Postgres files changed
run: |
echo '${{ steps.changed-postgres.outputs.all_changed_files }}'
- name: Calculate Postgres matrix key
id: key-postgres
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-db.outputs.any_changed }} || ${{ steps.changed-postgres.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get Postgres matrix
id: matrix-postgres
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/postgres/matrix.yml
- name: Check if Teradata files are changed
id: changed-teradata
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/teradata/tracked.txt
files_ignore_from_source_file: .github/workflows/data/teradata/ignored.txt
- name: Print Teradata files changed
run: |
echo '${{ steps.changed-teradata.outputs.all_changed_files }}'
- name: Calculate Teradata matrix key
id: key-teradata
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-db.outputs.any_changed }} || ${{ steps.changed-teradata.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get Teradata matrix
id: matrix-teradata
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/teradata/matrix.yml
- name: Check if FTP files are changed
id: changed-ftp
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/ftp/tracked.txt
files_ignore_from_source_file: .github/workflows/data/ftp/ignored.txt
- name: Print FTP files changed
run: |
echo '${{ steps.changed-ftp.outputs.all_changed_files }}'
- name: Calculate FTP matrix key
id: key-ftp
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-file.outputs.any_changed }} || ${{ steps.changed-ftp.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get FTP matrix
id: matrix-ftp
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/ftp/matrix.yml
- name: Check if FTPS files are changed
id: changed-ftps
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/ftps/tracked.txt
files_ignore_from_source_file: .github/workflows/data/ftps/ignored.txt
- name: Print FTPS files changed
run: |
echo '${{ steps.changed-ftps.outputs.all_changed_files }}'
- name: Calculate FTPS matrix key
id: key-ftps
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-file.outputs.any_changed }} || ${{ steps.changed-ftps.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get FTPS matrix
id: matrix-ftps
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/ftps/matrix.yml
- name: Check if HDFS files are changed
id: changed-hdfs
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/hdfs/tracked.txt
files_ignore_from_source_file: .github/workflows/data/hdfs/ignored.txt
- name: Print HDFS files changed
run: |
echo '${{ steps.changed-hdfs.outputs.all_changed_files }}'
- name: Calculate HDFS matrix key
id: key-hdfs
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-file.outputs.any_changed }} || ${{ steps.changed-hdfs.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get HDFS matrix
id: matrix-hdfs
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/hdfs/matrix.yml
- name: Check if S3 files are changed
id: changed-s3
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/s3/tracked.txt
files_ignore_from_source_file: .github/workflows/data/s3/ignored.txt
- name: Print S3 files changed
run: |
echo '${{ steps.changed-s3.outputs.all_changed_files }}'
- name: Calculate S3 matrix key
id: key-s3
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-file.outputs.any_changed }} || ${{ steps.changed-s3.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get S3 matrix
id: matrix-s3
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/s3/matrix.yml
- name: Check if SFTP files are changed
id: changed-sftp
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/sftp/tracked.txt
files_ignore_from_source_file: .github/workflows/data/sftp/ignored.txt
- name: Print SFTP files changed
run: |
echo '${{ steps.changed-sftp.outputs.all_changed_files }}'
- name: Calculate SFTP matrix key
id: key-sftp
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-file.outputs.any_changed }} || ${{ steps.changed-sftp.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get SFTP matrix
id: matrix-sftp
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/sftp/matrix.yml
- name: Check if Samba files are changed
id: changed-samba
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/samba/tracked.txt
files_ignore_from_source_file: .github/workflows/data/samba/ignored.txt
- name: Print Samba files changed
run: |
echo '${{ steps.changed-samba.outputs.all_changed_files }}'
- name: Calculate Samba matrix key
id: key-samba
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-file.outputs.any_changed }} || ${{ steps.changed-samba.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get Samba matrix
id: matrix-samba
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/samba/matrix.yml
- name: Check if WebDAV files are changed
id: changed-webdav
uses: tj-actions/changed-files@v45
with:
files_from_source_file: .github/workflows/data/webdav/tracked.txt
files_ignore_from_source_file: .github/workflows/data/webdav/ignored.txt
- name: Print WebDAV files changed
run: |
echo '${{ steps.changed-webdav.outputs.all_changed_files }}'
- name: Calculate WebDAV matrix key
id: key-webdav
run: |
if ${{ inputs.nightly }}; then
key=nightly
elif ${{ steps.changed-base.outputs.any_changed }} || ${{ steps.changed-file.outputs.any_changed }} || ${{ steps.changed-webdav.outputs.any_changed }}; then
key=full
else
key=small
fi
echo key=$key
echo key=$key >> $GITHUB_OUTPUT
- name: Get WebDAV matrix
id: matrix-webdav
uses: mikefarah/[email protected]
with:
cmd: yq -o=json '.matrix' .github/workflows/data/webdav/matrix.yml