Skip to content

Commit

Permalink
Resolved issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vrushang1234 committed Jun 1, 2024
1 parent 88a48d9 commit 942f28c
Show file tree
Hide file tree
Showing 27 changed files with 505 additions and 286 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/run-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,14 @@ jobs:
- name: Run cargo fmt
run: cargo fmt --all -- --check

- name: Lint pod operation
- name: Lint pod operation (w/o rpi)
run: cargo clippy -- -D warnings

- name: Lint pod operation (w/ rpi)
run: cargo clippy --features rpi -- -D warnings

- name: Build Pod Operation Program (debug)
run: cargo build --target $TARGET --config target.$TARGET.linker=\"aarch64-linux-gnu-gcc\"

- name: Build Pod Operation Program (release)
run: cargo build --target $TARGET --config target.$TARGET.linker=\"aarch64-linux-gnu-gcc\" --release
run: cargo brpi --config target.$TARGET.linker=\"aarch64-linux-gnu-gcc\"
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"rust-analyzer.cargo.features": [
// "rpi"
]
}
Loading

0 comments on commit 942f28c

Please sign in to comment.