initial commit

This commit is contained in:
2025-02-23 21:24:37 +01:00
commit b368f6200c
56 changed files with 2573 additions and 0 deletions

9
ci/jobs/build Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
set -xEeuo pipefail
cd "$(git rev-parse --show-toplevel)"
ci/build
ci/build --features defmt
ci/build --release
ci/build --features defmt --release

15
ci/jobs/check Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -xEeuo pipefail
cd "$(git rev-parse --show-toplevel)"
ci/format
ci/check
ci/check --features defmt
ci/check --release
ci/check --features defmt --release
ci/clippy
ci/clippy --release
ci/cargo-sort
ci/udeps
ci/udeps --release

7
ci/jobs/doc Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -xEeuo pipefail
cd "$(git rev-parse --show-toplevel)"
ci/doc
ci/doc --features defmt

7
ci/jobs/test Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -xEeuo pipefail
cd "$(git rev-parse --show-toplevel)"
ci/test
ci/test --release