-
Notifications
You must be signed in to change notification settings - Fork 26
813 lines (701 loc) · 26 KB
/
Copy pathci.yml
File metadata and controls
813 lines (701 loc) · 26 KB
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
name: CI
on:
push:
branches: [main]
paths-ignore:
- '**.md'
- 'docs/**'
- 'mkdocs.yml'
- '.github/workflows/docs.yml'
- '.github/workflows/mkdocs-preview.yml'
- '.github/workflows/test.yml'
- '.github/workflows/rmw-zenoh-rs.yml'
- '.github/workflows/semantic-pr.yml'
- '.github/workflows/pr-draft-check.yml'
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches: [main]
paths-ignore:
- '**.md'
- 'docs/**'
- 'mkdocs.yml'
- '.github/workflows/docs.yml'
- '.github/workflows/mkdocs-preview.yml'
- '.github/workflows/test.yml'
- '.github/workflows/rmw-zenoh-rs.yml'
- '.github/workflows/semantic-pr.yml'
- '.github/workflows/pr-draft-check.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
formatting:
name: Check Formatting
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
extra-substituters = https://hiroz.cachix.org
extra-trusted-public-keys = hiroz.cachix.org-1:wKJuqEckTG0DL3Df7Ly9OVsg5S5TGBHtvlPGs+vlqrY=
- name: Setup Cachix
uses: cachix/cachix-action@v15
with:
name: hiroz
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
skipPush: ${{ github.event_name == 'pull_request' }}
- name: Check formatting
run: nix build .#checks.x86_64-linux.pre-commit-check -L
no-ros-test:
name: ROS-independent Test (${{ matrix.os }})
runs-on: ${{ matrix.os }}
permissions:
contents: read
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Linux-specific setup
- name: Free Disk Space (Ubuntu)
if: runner.os == 'Linux'
uses: jlumbroso/free-disk-space@main
with:
large-packages: true
tool-cache: true
android: true
dotnet: true
haskell: true
docker-images: true
swap-storage: false
- name: Install Nix (Linux)
if: runner.os == 'Linux'
uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
extra-substituters = https://hiroz.cachix.org
extra-trusted-public-keys = hiroz.cachix.org-1:wKJuqEckTG0DL3Df7Ly9OVsg5S5TGBHtvlPGs+vlqrY=
- name: Setup Cachix (Linux)
if: runner.os == 'Linux'
uses: cachix/cachix-action@v15
with:
name: hiroz
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
skipPush: ${{ github.event_name == 'pull_request' }}
- name: Install Nushell (Linux via Nix)
if: runner.os == 'Linux'
run: |
nix profile install nixpkgs#nushell
chmod +x scripts/test-pure-rust.nu
- name: Setup nix environment (Linux)
# `nix print-dev-env` has no internal timeout: a substituter fetch that
# stalls hangs until GitHub's 6h job limit. Observed healthy range is
# 34-63s, so 20m is ~19x headroom while turning a stall into a fast,
# re-runnable failure. A cold cache after a flake.lock bump that needs
# real source builds will exceed this -- that should surface as a
# failure telling you to populate cachix, not run silently for hours.
timeout-minutes: 20
if: runner.os == 'Linux'
run: |
nix print-dev-env '.#pureRust-ci' --accept-flake-config > /tmp/nix-dev-env.sh
echo "export CI=true" >> /tmp/nix-dev-env.sh
# macOS-specific setup
- name: Install Rust toolchain (macOS)
if: runner.os == 'macOS'
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: clippy, rustfmt
- name: Install dependencies (macOS)
if: runner.os == 'macOS'
run: |
brew install nushell protobuf
chmod +x scripts/test-pure-rust.nu
- name: Install cargo-nextest (macOS)
if: runner.os == 'macOS'
uses: taiki-e/install-action@v2
with:
tool: cargo-nextest
# Common setup
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ runner.os }}-pureRust-test
- name: Set environment variables (macOS)
if: runner.os == 'macOS'
run: |
echo "CI=true" >> $GITHUB_ENV
# Test steps
- name: Clippy (default workspace)
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
source /tmp/nix-dev-env.sh
fi
nu scripts/test-pure-rust.nu clippy-workspace
shell: bash
- name: Run tests
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
source /tmp/nix-dev-env.sh
fi
nu scripts/test-pure-rust.nu run-tests
shell: bash
no-ros-shm:
name: SHM Tests (ubuntu-latest)
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
large-packages: true
tool-cache: true
android: true
dotnet: true
haskell: true
docker-images: true
swap-storage: false
- name: Install Nix (Linux)
uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
extra-substituters = https://hiroz.cachix.org
extra-trusted-public-keys = hiroz.cachix.org-1:wKJuqEckTG0DL3Df7Ly9OVsg5S5TGBHtvlPGs+vlqrY=
- name: Setup Cachix
uses: cachix/cachix-action@v15
with:
name: hiroz
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
skipPush: ${{ github.event_name == 'pull_request' }}
- name: Install Nushell (Linux via Nix)
run: |
nix profile install nixpkgs#nushell
chmod +x scripts/test-pure-rust.nu
- name: Setup nix environment (Linux)
# `nix print-dev-env` has no internal timeout: a substituter fetch that
# stalls hangs until GitHub's 6h job limit. Observed healthy range is
# 34-63s, so 20m is ~19x headroom while turning a stall into a fast,
# re-runnable failure. A cold cache after a flake.lock bump that needs
# real source builds will exceed this -- that should surface as a
# failure telling you to populate cachix, not run silently for hours.
timeout-minutes: 20
run: |
nix print-dev-env '.#pureRust-ci' --accept-flake-config > /tmp/nix-dev-env.sh
echo "export CI=true" >> /tmp/nix-dev-env.sh
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ runner.os }}-pureRust-shm
- name: SHM tests
run: |
sudo prlimit --memlock=unlimited --pid=$$
source /tmp/nix-dev-env.sh
nu scripts/test-pure-rust.nu test-shm
shell: bash
coverage:
name: Code Coverage (ubuntu-latest)
runs-on: ubuntu-latest
continue-on-error: false
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
large-packages: true
tool-cache: true
android: true
dotnet: true
haskell: true
docker-images: true
swap-storage: false
- name: Install Nix
uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
extra-substituters = https://hiroz.cachix.org
extra-trusted-public-keys = hiroz.cachix.org-1:wKJuqEckTG0DL3Df7Ly9OVsg5S5TGBHtvlPGs+vlqrY=
- name: Setup Cachix
uses: cachix/cachix-action@v15
with:
name: hiroz
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
skipPush: ${{ github.event_name == 'pull_request' }}
- name: Install Nushell
run: nix profile install nixpkgs#nushell
- name: Setup nix environment
# `nix print-dev-env` has no internal timeout: a substituter fetch that
# stalls hangs until GitHub's 6h job limit. Observed healthy range is
# 34-63s, so 20m is ~19x headroom while turning a stall into a fast,
# re-runnable failure. A cold cache after a flake.lock bump that needs
# real source builds will exceed this -- that should surface as a
# failure telling you to populate cachix, not run silently for hours.
timeout-minutes: 20
run: |
nix print-dev-env '.#pureRust-ci' --accept-flake-config > /tmp/nix-dev-env.sh
echo "export CI=true" >> /tmp/nix-dev-env.sh
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
shared-key: ubuntu-latest-coverage
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov
- name: Run coverage
run: |
source /tmp/nix-dev-env.sh
# Without its features hiroz-tests compiles to empty binaries, so
# coverage taken blind under-reports the paths they exercise.
cargo llvm-cov \
-p hiroz -p hiroz-codegen -p hiroz-cdr -p hiroz-protocol -p hiroz-schema \
-p hiroz-tests \
--features hiroz-tests/ros-msgs,hiroz-tests/jazzy \
-j4 \
--lcov --output-path lcov.info
shell: bash
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
continue-on-error: true
with:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
no-ros-checks:
name: ROS-independent Checks (${{ matrix.os }})
runs-on: ${{ matrix.os }}
permissions:
contents: read
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Linux-specific setup
- name: Free Disk Space (Ubuntu)
if: runner.os == 'Linux'
uses: jlumbroso/free-disk-space@main
with:
large-packages: true
tool-cache: true
android: true
dotnet: true
haskell: true
docker-images: true
swap-storage: false
- name: Install Nix (Linux)
if: runner.os == 'Linux'
uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
extra-substituters = https://hiroz.cachix.org
extra-trusted-public-keys = hiroz.cachix.org-1:wKJuqEckTG0DL3Df7Ly9OVsg5S5TGBHtvlPGs+vlqrY=
- name: Setup Cachix (Linux)
if: runner.os == 'Linux'
uses: cachix/cachix-action@v15
with:
name: hiroz
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
skipPush: ${{ github.event_name == 'pull_request' }}
- name: Install Nushell (Linux via Nix)
if: runner.os == 'Linux'
run: |
nix profile install nixpkgs#nushell
chmod +x scripts/test-pure-rust.nu
- name: Setup nix environment (Linux)
# `nix print-dev-env` has no internal timeout: a substituter fetch that
# stalls hangs until GitHub's 6h job limit. Observed healthy range is
# 34-63s, so 20m is ~19x headroom while turning a stall into a fast,
# re-runnable failure. A cold cache after a flake.lock bump that needs
# real source builds will exceed this -- that should surface as a
# failure telling you to populate cachix, not run silently for hours.
timeout-minutes: 20
if: runner.os == 'Linux'
run: |
nix print-dev-env '.#pureRust-ci' --accept-flake-config > /tmp/nix-dev-env.sh
echo "export CI=true" >> /tmp/nix-dev-env.sh
# macOS-specific setup
- name: Install Rust toolchain (macOS)
if: runner.os == 'macOS'
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
target: wasm32-wasip2
components: clippy, rustfmt
- name: Install dependencies (macOS)
if: runner.os == 'macOS'
run: |
brew install nushell protobuf
chmod +x scripts/test-pure-rust.nu
# Common setup
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ runner.os }}-pureRust-checks-v2
- name: Set environment variables (macOS)
if: runner.os == 'macOS'
run: |
echo "CI=true" >> $GITHUB_ENV
# Check steps
- name: Check hiroz-msgs feature flags
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
source /tmp/nix-dev-env.sh
fi
nu scripts/test-pure-rust.nu check-bundled-msgs
shell: bash
- name: Check hu (hiroz-union)
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
source /tmp/nix-dev-env.sh
fi
nu scripts/test-pure-rust.nu check-hu
shell: bash
- name: Check all examples
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
source /tmp/nix-dev-env.sh
fi
nu scripts/test-pure-rust.nu check-examples
shell: bash
- name: Check rustdoc links
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
source /tmp/nix-dev-env.sh
fi
nu scripts/test-pure-rust.nu check-rustdoc-links
shell: bash
- name: Check distro feature flags
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
source /tmp/nix-dev-env.sh
fi
nu scripts/test-pure-rust.nu check-distro-features
shell: bash
- name: Clippy (hiroz-py)
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
source /tmp/nix-dev-env.sh
fi
nu scripts/test-pure-rust.nu clippy-hiroz-py
shell: bash
- name: Clippy (hiroz-tests, interop features)
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
source /tmp/nix-dev-env.sh
fi
nu scripts/test-pure-rust.nu clippy-tests
shell: bash
wasm-plugin-tests:
name: WASM Plugin Tests (ubuntu-latest)
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
large-packages: true
tool-cache: true
android: true
dotnet: true
haskell: true
docker-images: true
swap-storage: false
- name: Install Nix
uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
extra-substituters = https://hiroz.cachix.org
extra-trusted-public-keys = hiroz.cachix.org-1:wKJuqEckTG0DL3Df7Ly9OVsg5S5TGBHtvlPGs+vlqrY=
- name: Setup Cachix
uses: cachix/cachix-action@v15
with:
name: hiroz
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
skipPush: ${{ github.event_name == 'pull_request' }}
- name: Setup nix environment
# `nix print-dev-env` has no internal timeout: a substituter fetch that
# stalls hangs until GitHub's 6h job limit. Observed healthy range is
# 34-63s, so 20m is ~19x headroom while turning a stall into a fast,
# re-runnable failure. A cold cache after a flake.lock bump that needs
# real source builds will exceed this -- that should surface as a
# failure telling you to populate cachix, not run silently for hours.
timeout-minutes: 20
run: |
nix print-dev-env '.#pureRust-ci' --accept-flake-config > /tmp/nix-dev-env.sh
echo "export CI=true" >> /tmp/nix-dev-env.sh
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
shared-key: ubuntu-latest-wasm-plugin-tests
- name: Run WASM plugin tests
run: |
source /tmp/nix-dev-env.sh
bash scripts/ci/hu-tests.sh
python-stubs-fresh:
name: Generated Python Stubs (ubuntu-latest)
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
large-packages: true
tool-cache: true
android: true
dotnet: true
haskell: true
docker-images: true
swap-storage: false
- name: Install Nix
uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
extra-substituters = https://hiroz.cachix.org
extra-trusted-public-keys = hiroz.cachix.org-1:wKJuqEckTG0DL3Df7Ly9OVsg5S5TGBHtvlPGs+vlqrY=
- name: Setup Cachix
uses: cachix/cachix-action@v15
with:
name: hiroz
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
skipPush: ${{ github.event_name == 'pull_request' }}
- name: Install Nushell
run: |
nix profile install nixpkgs#nushell
chmod +x scripts/test-pure-rust.nu
- name: Setup nix environment
run: |
nix print-dev-env '.#pureRust-ci' --accept-flake-config > /tmp/nix-dev-env.sh
echo "export CI=true" >> /tmp/nix-dev-env.sh
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
shared-key: ubuntu-latest-python-stubs
# Deliberately does NOT restore the `python-tests` job's generated-types
# cache: a restored copy would be compared against the tree instead of a
# freshly generated one, and the check would report on the cache.
- name: Generated Python stubs are up to date
run: |
source /tmp/nix-dev-env.sh
nu scripts/test-pure-rust.nu check-python-stubs
go-tests:
name: Go Tests (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Install Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ runner.os }}-go-ffi
- name: Install Nushell
uses: hustcer/setup-nu@v3
with:
version: '0.102'
- name: Go vet (static analysis)
run: nu scripts/test-go.nu --vet-only
- name: Go pure tests (codegen + testdata)
run: nu scripts/test-go.nu --codegen-only
- name: Go FFI tests (hiroz unit tests)
run: nu scripts/test-go.nu --ffi-only
python-tests:
name: Python Tests (hiroz-py) (${{ matrix.distro }})
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
fail-fast: false
matrix:
distro: [humble, jazzy, kilted, lyrical]
# Skip for draft PRs to save CI time during development
if: |
github.event_name == 'push' ||
github.event.pull_request.draft == false
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
large-packages: true
tool-cache: true
android: true
dotnet: true
haskell: true
docker-images: true
swap-storage: false
- name: Install Nix
uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
extra-substituters = https://ros.cachix.org https://hiroz.cachix.org
extra-trusted-public-keys = ros.cachix.org-1:dSyZxI8geDCJrwgvCOHDoAfOm5sV1wCPjBkKL+38Rvo=
extra-trusted-public-keys = hiroz.cachix.org-1:wKJuqEckTG0DL3Df7Ly9OVsg5S5TGBHtvlPGs+vlqrY=
- name: Setup Cachix
uses: cachix/cachix-action@v15
with:
name: hiroz
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
# Push hiroz's own built Nix derivations on main-branch runs so
# subsequent runs (including PRs) can download them from Cachix
# instead of rebuilding. hiroz.cachix.org is our own cache;
# ros.cachix.org is read-only for upstream ROS packages.
skipPush: ${{ github.event_name == 'pull_request' }}
- name: Install Nushell
run: |
nix profile install nixpkgs#nushell
chmod +x scripts/test-python.nu
- name: Setup nix environment
# `nix print-dev-env` has no internal timeout: a substituter fetch that
# stalls hangs until GitHub's 6h job limit. Observed healthy range is
# 34-63s, so 20m is ~19x headroom while turning a stall into a fast,
# re-runnable failure. A cold cache after a flake.lock bump that needs
# real source builds will exceed this -- that should surface as a
# failure telling you to populate cachix, not run silently for hours.
timeout-minutes: 20
run: |
nix print-dev-env '.#ros-${{ matrix.distro }}-ci' --accept-flake-config > /tmp/nix-dev-env.sh
echo "export CI=true" >> /tmp/nix-dev-env.sh
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ matrix.distro }}-python
- name: Clean pyo3 build artifacts
run: find target -name 'build-script-build' -path '*pyo3-build-config*' -delete 2>/dev/null || true
- name: Cache generated Python types
uses: actions/cache@v4
with:
path: crates/hiroz-msgs/python/hiroz_msgs_py/types
key: >-
${{ runner.os }}-${{ matrix.distro }}-python-types-${{
hashFiles('Cargo.lock', 'crates/hiroz-msgs/python/**') }}
restore-keys: |
${{ runner.os }}-${{ matrix.distro }}-python-types-
- name: Setup venv
run: |
source /tmp/nix-dev-env.sh
nu scripts/test-python.nu --distro ${{ matrix.distro }} setup-venv
- name: Ruff linting
run: |
source /tmp/nix-dev-env.sh
nu scripts/test-python.nu --distro ${{ matrix.distro }} lint-ruff
- name: Ruff format check
run: |
source /tmp/nix-dev-env.sh
nu scripts/test-python.nu --distro ${{ matrix.distro }} format-ruff
- name: MyPy type checking
run: |
source /tmp/nix-dev-env.sh
nu scripts/test-python.nu --distro ${{ matrix.distro }} typecheck-mypy
- name: Run pytest
run: |
sudo prlimit --memlock=unlimited --pid=$$
source /tmp/nix-dev-env.sh
nu scripts/test-python.nu --distro ${{ matrix.distro }} run-pytest
- name: Run examples
run: |
source /tmp/nix-dev-env.sh
nu scripts/test-python.nu --distro ${{ matrix.distro }} run-examples
- name: Run Python-Rust interop tests
run: |
source /tmp/nix-dev-env.sh
nu scripts/test-python.nu --distro ${{ matrix.distro }} run-python-interop
- name: Cleanup
run: |
source /tmp/nix-dev-env.sh
nu scripts/test-python.nu --distro ${{ matrix.distro }} cleanup-python
ros-tests:
name: ROS Tests (clippy-rmw, interop) (${{ matrix.distro }})
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
fail-fast: false
matrix:
distro: [humble, jazzy, kilted, lyrical]
# Skip for draft PRs to save CI time during development
if: |
github.event_name == 'push' ||
github.event.pull_request.draft == false
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
large-packages: true
tool-cache: true
android: true
dotnet: true
haskell: true
docker-images: true
swap-storage: false
- name: Install Nix
uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
extra-substituters = https://ros.cachix.org https://hiroz.cachix.org
extra-trusted-public-keys = ros.cachix.org-1:dSyZxI8geDCJrwgvCOHDoAfOm5sV1wCPjBkKL+38Rvo=
extra-trusted-public-keys = hiroz.cachix.org-1:wKJuqEckTG0DL3Df7Ly9OVsg5S5TGBHtvlPGs+vlqrY=
- name: Setup Cachix
uses: cachix/cachix-action@v15
with:
name: hiroz
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
skipPush: ${{ github.event_name == 'pull_request' }}
- name: Install Nushell
run: |
nix profile install nixpkgs#nushell
chmod +x scripts/test-ros.nu
- name: Setup nix environment
# `nix print-dev-env` has no internal timeout: a substituter fetch that
# stalls hangs until GitHub's 6h job limit. Observed healthy range is
# 34-63s, so 20m is ~19x headroom while turning a stall into a fast,
# re-runnable failure. A cold cache after a flake.lock bump that needs
# real source builds will exceed this -- that should surface as a
# failure telling you to populate cachix, not run silently for hours.
timeout-minutes: 20
run: |
nix print-dev-env '.#ros-${{ matrix.distro }}-ci' \
--accept-flake-config > /tmp/nix-dev-env.sh
echo "export CI=true" >> /tmp/nix-dev-env.sh
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ matrix.distro }}-ros-v2
- name: Run ROS tests
run: |
source /tmp/nix-dev-env.sh
nu scripts/test-ros.nu --distro ${{ matrix.distro }}