-
Notifications
You must be signed in to change notification settings - Fork 42
1363 lines (1315 loc) · 40.9 KB
/
.lint.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
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
name: . Lint
'on':
workflow_call:
inputs:
# Workflows
workflow:
required: true
type: boolean
# Languages
ansible:
required: true
type: boolean
c-cpp:
required: true
type: boolean
cmake:
required: true
type: boolean
css:
required: true
type: boolean
dockerfile:
required: true
type: boolean
html:
required: true
type: boolean
json:
required: true
type: boolean
justfile:
required: true
type: boolean
kubernetes:
required: true
type: boolean
markdown:
required: true
type: boolean
matlab:
required: true
type: boolean
natural-language:
required: true
type: boolean
python:
required: true
type: boolean
qml:
required: true
type: boolean
ruby:
required: true
type: boolean
shell:
required: true
type: boolean
solidity:
required: true
type: boolean
sql:
required: true
type: boolean
terraform:
required: true
type: boolean
toml:
required: true
type: boolean
verilog:
required: true
type: boolean
vhdl:
required: true
type: boolean
xml:
required: true
type: boolean
yaml:
required: true
type: boolean
# Applications
api-go:
required: true
type: boolean
api-node:
required: true
type: boolean
api-rust:
required: true
type: boolean
ethereum:
required: true
type: boolean
grafana-hm-panel-plugin:
required: true
type: boolean
hm-spark-find-retired-people-scala:
required: true
type: boolean
hm-spark-ingest-from-s3-to-kafka:
required: true
type: boolean
iads-data-producer:
required: true
type: boolean
kafka-rust-proto-consumer:
required: true
type: boolean
kafka-rust-proto-producer:
required: true
type: boolean
kafka-rust-udp-kafka-bridge:
required: true
type: boolean
kafka-rust-zeromq-kafka-bridge:
required: true
type: boolean
mobile-android:
required: true
type: boolean
mobile-react-native:
required: true
type: boolean
national-instruments-veristand-zeromq-bridge:
required: true
type: boolean
udp-receiver:
required: true
type: boolean
udp-sender:
required: true
type: boolean
web-cypress:
required: true
type: boolean
web:
required: true
type: boolean
windows-calculator:
required: true
type: boolean
zeromq-iads-bridge:
required: true
type: boolean
jobs:
lint-ansible:
name: Ansible
if: ${{ inputs.workflow || inputs.ansible }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install uv
uses: astral-sh/[email protected]
with:
version: 0.5.20
enable-cache: true
cache-dependency-glob: uv.lock
- name: Set up Python
uses: actions/[email protected]
with:
python-version-file: pyproject.toml
- name: Install dependencies
run: uv sync --dev
- name: Install dependencies from Ansible Galaxy
run: |
uv run poe ansible-galaxy-install --role-file=ansible/requirements.yml
- name: Lint Ansible
run: |
uv run poe lint-ansible
lint-csharp-national-instruments-veristand-zeromq-bridge:
name: C# (national-instruments-veristand-zeromq-bridge)
if: ${{ inputs.workflow || inputs.national-instruments-veristand-zeromq-bridge }}
runs-on: windows-2025
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up NuGet
uses: nuget/[email protected]
with:
# https://www.nuget.org/packages/NuGet.Versioning#versions-body-tab
nuget-version: 6.12.1
- name: Set up .NET Core
uses: actions/[email protected]
with:
global-json-file: hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge/global.json
env:
# https://github.com/dotnet/sdk/issues/44957
DOTNET_INSTALL_DIR: ${{ runner.temp }}/.dotnet
- name: Install dependencies
working-directory: hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge
run: |
nuget restore VeriStandZeroMQBridge.sln
dotnet tool restore
- name: Lint C# (format)
working-directory: hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge
run: |
dotnet format VeriStandZeroMQBridge.sln --verify-no-changes
- name: Lint C# (CSharpier)
working-directory: hardware-in-the-loop/national-instruments/veristand/VeriStandZeroMQBridge
run: |
dotnet csharpier --check .
lint-c-cpp:
name: C, C++
if: ${{ inputs.workflow || inputs.c-cpp }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Lint C, C++ (ClangFormat)
uses: DoozyX/[email protected]
with:
source: .
extensions: c,cpp,cu,cuh,h,hpp,ino
clangFormatVersion: 18
style: file
- name: Install uv
uses: astral-sh/[email protected]
with:
version: 0.5.20
enable-cache: true
cache-dependency-glob: uv.lock
- name: Set up Python
uses: actions/[email protected]
with:
python-version-file: pyproject.toml
- name: Install dependencies
run: |
uv sync --dev
- name: Lint C, C++ (cpplint)
run: |
uv run poe lint-c-cpp-cpplint --repository=asterios/led-blinker --extensions=c,h --recursive asterios/led-blinker
uv run poe lint-c-cpp-cpplint --repository=compiler-infrastructure/llvm --extensions=cpp,hpp --recursive compiler-infrastructure/llvm
uv run poe lint-c-cpp-cpplint --repository=data-processing/kafka/kafka-client/kafka-c/avro-producer --extensions=c,h --recursive data-processing/kafka/kafka-client/kafka-c/avro-producer
uv run poe lint-c-cpp-cpplint --repository=embedded-system/freertos --extensions=ino --recursive embedded-system/freertos
uv run poe lint-c-cpp-cpplint --repository=matlab/call-c-function-in-matlab --extensions=c,h --recursive matlab/call-c-function-in-matlab
uv run poe lint-c-cpp-cpplint --repository=matlab/call-c-function-in-matlab --extensions=c,h --recursive matlab/call-c-function-in-matlab
uv run poe lint-c-cpp-cpplint --repository=parallel-computing/cuda --extensions=cu,cuh --recursive parallel-computing/cuda
uv run poe lint-c-cpp-cpplint --repository=reverse-engineering/hello-c --extensions=c,h --recursive reverse-engineering/hello-c
uv run poe lint-c-cpp-cpplint --repository=reverse-engineering/hello-cpp --extensions=cpp,hpp --recursive reverse-engineering/hello-cpp
uv run poe lint-c-cpp-cpplint --repository=robotics/robot-operating-system/src/hm_cpp_package --extensions=cpp,hpp --recursive robotics/robot-operating-system
lint-cmake:
name: CMake
if: ${{ inputs.workflow || inputs.cmake }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install uv
uses: astral-sh/[email protected]
with:
version: 0.5.20
enable-cache: true
cache-dependency-glob: uv.lock
- name: Set up Python
uses: actions/[email protected]
with:
python-version-file: pyproject.toml
- name: Install dependencies
run: |
uv sync --dev
- name: Lint CMake
run: |
uv run poe lint-cmake
lint-commit-message:
name: Commit Message
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Lint Commit
uses: wagoid/[email protected]
lint-css:
name: CSS
if: ${{ inputs.workflow || inputs.css }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version-file: .node-version
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: |
npm ci
- name: Lint CSS
run: |
npm run lint:css
lint-dockerfile:
name: Dockerfile
if: ${{ inputs.workflow || inputs.dockerfile }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Lint Dockerfile
uses: jbergstroem/[email protected]
with:
dockerfile: '**/Dockerfile*'
lint-go-api-go:
name: Go (api-go)
if: ${{ inputs.workflow || inputs.api-go }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Go
uses: actions/[email protected]
with:
go-version-file: api-go/go.mod
cache-dependency-path: api-go/go.sum
- name: Lint Go
uses: golangci/[email protected]
with:
version: latest
working-directory: api-go
args: --timeout=10m
lint-html:
name: HTML
if: ${{ inputs.workflow || inputs.html }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version-file: .node-version
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: |
npm ci
- name: Lint HTML
run: |
npm run lint:html
lint-javascript-api-node:
name: JavaScript (api-node)
if: ${{ inputs.workflow || inputs.api-node }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version-file: api-node/.node-version
cache: npm
cache-dependency-path: api-node/package-lock.json
- name: Install dependencies
working-directory: api-node
run: |
npm ci
- name: Lint JavaScript
working-directory: api-node
run: |
npm run lint:javascript
lint-javascript-ethereum:
name: JavaScript (ethereum)
if: ${{ inputs.workflow || inputs.ethereum }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version-file: ethereum/.node-version
cache: npm
cache-dependency-path: ethereum/package-lock.json
- name: Install dependencies
working-directory: ethereum
run: |
npm ci
- name: Lint JavaScript
working-directory: ethereum
run: |
npm run lint:javascript
lint-javascript-grafana-hm-panel-plugin:
name: JavaScript (grafana-hm-panel-plugin)
if: ${{ inputs.workflow || inputs.grafana-hm-panel-plugin }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version-file: data-visualization/grafana/hm-panel-plugin/.node-version
cache: npm
cache-dependency-path: data-visualization/grafana/hm-panel-plugin/package-lock.json
- name: Install dependencies
working-directory: data-visualization/grafana/hm-panel-plugin
run: |
npm ci
- name: Lint JavaScript
working-directory: data-visualization/grafana/hm-panel-plugin
run: |
npm run lint:javascript
lint-javascript-mobile-react-native:
name: JavaScript (mobile-react-native)
if: ${{ inputs.workflow || inputs.mobile-react-native }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version-file: mobile/mobile-react-native/.node-version
cache: npm
cache-dependency-path: mobile/mobile-react-native/package-lock.json
- name: Install dependencies
working-directory: mobile/mobile-react-native
run: |
npm ci
- name: Lint JavaScript
working-directory: mobile/mobile-react-native
run: |
npm run lint:javascript
lint-javascript-web:
name: JavaScript (web)
if: ${{ inputs.workflow || inputs.web }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version-file: web/.node-version
cache: npm
cache-dependency-path: web/package-lock.json
- name: Install dependencies
working-directory: web
run: |
npm ci
- name: Lint JavaScript
working-directory: web
run: |
npm run lint:javascript
lint-javascript-web-cypress:
name: JavaScript (web-cypress)
if: ${{ inputs.workflow || inputs.web-cypress }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version-file: web-cypress/.node-version
cache: npm
cache-dependency-path: web-cypress/package-lock.json
- name: Install dependencies
working-directory: web-cypress
run: |
npm ci
- name: Lint JavaScript
working-directory: web-cypress
run: |
npm run lint:javascript
lint-json:
name: JSON
if: ${{ inputs.workflow || inputs.json }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version-file: .node-version
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: |
npm ci
- name: Lint JSON
run: |
npm run lint:json
lint-justfile:
name: justfile
if: ${{ inputs.workflow || inputs.justfile }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install uv
uses: astral-sh/[email protected]
with:
version: 0.5.20
enable-cache: true
cache-dependency-glob: uv.lock
- name: Set up Python
uses: actions/[email protected]
with:
python-version-file: pyproject.toml
- name: Install dependencies
run: |
uv sync --dev
- name: Lint justfile
run: |
uv run poe lint-justfile
lint-kotlin-mobile-android:
name: Kotlin (mobile-android)
if: ${{ inputs.workflow || inputs.mobile-android }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Java
uses: actions/[email protected]
with:
distribution: corretto
java-version: '17'
cache: gradle
- name: Lint Kotlin
working-directory: mobile/mobile-android
run: |
./gradlew ktlintCheck
lint-kubernetes-manifest:
name: Kubernetes Manifest
if: ${{ inputs.workflow || inputs.kubernetes }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Lint Kubernetes
run: |
docker run \
--rm \
--volume="$(pwd)/kubernetes:/kubernetes" \
ghcr.io/yannh/kubeconform:latest-alpine \
-kubernetes-version=1.26.0 \
-ignore-filename-pattern='.*trafficsplit.yaml' \
-ignore-filename-pattern='.*my-values.yaml' \
-ignore-filename-pattern=kubernetes/manifests/argocd/ \
-ignore-filename-pattern=kubernetes/manifests/elastic/ \
-ignore-filename-pattern=kubernetes/manifests/hm-kafka/ \
-ignore-filename-pattern=kubernetes/manifests/kubeflow/kubeflow-training-operator/ \
-ignore-filename-pattern=kubernetes/manifests/postgres-operator/ \
-ignore-filename-pattern=kubernetes/manifests/prometheus/ \
-ignore-filename-pattern=kubernetes/manifests/yugabyte/ \
kubernetes/manifests/
lint-markdown:
name: Markdown
if: ${{ inputs.workflow || inputs.markdown }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version-file: .node-version
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: |
npm ci
- name: Lint Markdown
run: |
npm run lint:markdown
lint-matlab:
name: MATLAB
if: ${{ inputs.workflow || inputs.matlab }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install uv
uses: astral-sh/[email protected]
with:
version: 0.5.20
enable-cache: true
cache-dependency-glob: uv.lock
- name: Set up Python
uses: actions/[email protected]
with:
python-version-file: pyproject.toml
- name: Install dependencies
run: |
uv sync --dev
- name: Lint MATLAB
run: |
uv run poe lint-matlab
lint-natural-language:
name: Natural Language
if: ${{ inputs.workflow || inputs.natural-language }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version-file: .node-version
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: |
npm ci
- name: Lint natural language
run: |
npm run lint:natural-language
lint-protocol-buffers-api-go:
name: Protocol Buffers (api-go)
if: ${{ inputs.workflow || inputs.api-go }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Lint Protocol Buffers
working-directory: api-go
run: |
docker run \
--rm \
--volume="$(pwd):/workspace" \
--workdir=/workspace \
bufbuild/buf \
lint
lint-python:
name: Python
if: ${{ inputs.workflow || inputs.python }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install uv
uses: astral-sh/[email protected]
with:
version: 0.5.20
enable-cache: true
cache-dependency-glob: uv.lock
- name: Set up Python
uses: actions/[email protected]
with:
python-version-file: pyproject.toml
- name: Install dependencies
run: |
uv sync --dev
- name: Lint Python
run: |
uv run poe lint-python
lint-qml:
name: QML
if: ${{ inputs.workflow || inputs.qml }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Qt
uses: jurplel/[email protected]
with:
version: 6.6.1
cache: true
- name: Lint QML
run: |
qmllint $(git ls-files "**/*.qml")
lint-ruby:
name: Ruby
if: ${{ inputs.workflow || inputs.ruby }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Lint Ruby
run: |
bundle exec rubocop
lint-rust-api-rust:
name: Rust (api-rust)
if: ${{ inputs.workflow || inputs.api-rust }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install OpenCV
run: |
sudo apt-get update
sudo apt-get install --yes libopencv-dev
- name: Set up Rust
uses: actions-rust-lang/[email protected]
- name: Install dependencies
working-directory: api-rust
run: |
cargo build
- name: Lint Rust (rustfmt)
working-directory: api-rust
run: |
cargo fmt --all
- name: Lint Rust (Clippy)
working-directory: api-rust
run: |
cargo clippy
lint-rust-iads-data-producer:
name: Rust (iads-data-producer)
if: ${{ inputs.workflow || inputs.iads-data-producer }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Rust
uses: actions-rust-lang/[email protected]
- name: Install dependencies
working-directory: data-visualization/iads/iads-rtstation/iads-data-producer
run: |
cargo build
- name: Lint Rust (rustfmt)
working-directory: data-visualization/iads/iads-rtstation/iads-data-producer
run: |
cargo fmt --all
- name: Lint Rust (Clippy)
working-directory: data-visualization/iads/iads-rtstation/iads-data-producer
run: |
cargo clippy
lint-rust-zeromq-iads-bridge:
name: Rust (zeromq-iads-bridge)
if: ${{ inputs.workflow || inputs.zeromq-iads-bridge }}
runs-on: windows-2025
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
# protoc is for prost
- name: Install protoc
uses: arduino/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 28.3
- name: Set up Rust
uses: actions-rust-lang/[email protected]
- name: Install dependencies
working-directory: data-visualization/iads/iads-rtstation/zeromq-iads-bridge
run: |
cargo build
- name: Lint Rust (rustfmt)
working-directory: data-visualization/iads/iads-rtstation/zeromq-iads-bridge
run: |
cargo fmt --all
- name: Lint Rust (Clippy)
working-directory: data-visualization/iads/iads-rtstation/zeromq-iads-bridge
run: |
cargo clippy
lint-rust-kafka-rust-proto-consumer:
name: Rust (kafka-rust-proto-consumer)
if: ${{ inputs.workflow || inputs.kafka-rust-proto-consumer }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
# librdkafka is for rdkafka
- name: Install librdkafka
run: |
# https://github.com/confluentinc/librdkafka#build-from-source
wget --no-verbose --output-document=librdkafka.tar.gz https://github.com/edenhill/librdkafka/archive/refs/tags/v2.8.0.tar.gz
tar -x -f librdkafka.tar.gz
rm -f librdkafka.tar.gz
cd librdkafka-2.8.0
./configure
make
sudo make install
sudo ldconfig
cd ..
rm -r -f librdkafka-2.8.0/
# protoc is for prost
- name: Install protoc
uses: arduino/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 28.3
- name: Set up Rust
uses: actions-rust-lang/[email protected]
- name: Install dependencies
working-directory: data-processing/kafka/kafka-client/kafka-rust/proto-consumer
run: |
cargo build
- name: Lint Rust (rustfmt)
working-directory: data-processing/kafka/kafka-client/kafka-rust/proto-consumer
run: |
cargo fmt --all
- name: Lint Rust (Clippy)
working-directory: data-processing/kafka/kafka-client/kafka-rust/proto-consumer
run: |
cargo clippy
lint-rust-kafka-rust-proto-producer:
name: Rust (kafka-rust-proto-producer)
if: ${{ inputs.workflow || inputs.kafka-rust-proto-producer }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
# librdkafka is for rdkafka
- name: Install librdkafka
run: |
# https://github.com/confluentinc/librdkafka#build-from-source
wget --no-verbose --output-document=librdkafka.tar.gz https://github.com/edenhill/librdkafka/archive/refs/tags/v2.8.0.tar.gz
tar -x -f librdkafka.tar.gz
rm -f librdkafka.tar.gz
cd librdkafka-2.8.0
./configure
make
sudo make install
sudo ldconfig
cd ..
rm -r -f librdkafka-2.8.0/
# protoc is for prost
- name: Install protoc
uses: arduino/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 28.3
- name: Set up Rust
uses: actions-rust-lang/[email protected]
- name: Install dependencies
working-directory: data-processing/kafka/kafka-client/kafka-rust/proto-producer
run: |
cargo build
- name: Lint Rust (rustfmt)
working-directory: data-processing/kafka/kafka-client/kafka-rust/proto-producer
run: |
cargo fmt --all
- name: Lint Rust (Clippy)
working-directory: data-processing/kafka/kafka-client/kafka-rust/proto-producer
run: |
cargo clippy
lint-rust-kafka-rust-udp-kafka-bridge:
name: Rust (kafka-rust-udp-kafka-bridge)
if: ${{ inputs.workflow || inputs.kafka-rust-udp-kafka-bridge }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
# librdkafka is for rdkafka
- name: Install librdkafka
run: |
# https://github.com/confluentinc/librdkafka#build-from-source
wget --no-verbose --output-document=librdkafka.tar.gz https://github.com/edenhill/librdkafka/archive/refs/tags/v2.8.0.tar.gz
tar -x -f librdkafka.tar.gz
rm -f librdkafka.tar.gz
cd librdkafka-2.8.0
./configure
make
sudo make install
sudo ldconfig
cd ..
rm -r -f librdkafka-2.8.0/
# protoc is for prost
- name: Install protoc
uses: arduino/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 28.3
- name: Set up Rust
uses: actions-rust-lang/[email protected]
- name: Install dependencies
working-directory: data-processing/kafka/kafka-client/kafka-rust/udp-kafka-bridge
run: |
cargo build
- name: Lint Rust (rustfmt)
working-directory: data-processing/kafka/kafka-client/kafka-rust/udp-kafka-bridge
run: |
cargo fmt --all
- name: Lint Rust (Clippy)
working-directory: data-processing/kafka/kafka-client/kafka-rust/udp-kafka-bridge
run: |
cargo clippy
lint-rust-kafka-rust-zeromq-kafka-bridge:
name: Rust (kafka-rust-zeromq-kafka-bridge)
if: ${{ inputs.workflow || inputs.kafka-rust-zeromq-kafka-bridge }}
runs-on: ubuntu-24.04
environment: test
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
# librdkafka is for rdkafka
- name: Install librdkafka
run: |
# https://github.com/confluentinc/librdkafka#build-from-source
wget --no-verbose --output-document=librdkafka.tar.gz https://github.com/edenhill/librdkafka/archive/refs/tags/v2.8.0.tar.gz
tar -x -f librdkafka.tar.gz
rm -f librdkafka.tar.gz
cd librdkafka-2.8.0
./configure
make
sudo make install
sudo ldconfig
cd ..
rm -r -f librdkafka-2.8.0/
# protoc is for prost
- name: Install protoc
uses: arduino/[email protected]
with: