Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into update_uplink_config
Browse files Browse the repository at this point in the history
  • Loading branch information
Devdutt Shenoi committed Sep 16, 2024
2 parents b6b8f00 + a177d1d commit 1641dc6
Show file tree
Hide file tree
Showing 14 changed files with 615 additions and 479 deletions.
Binary file added .downloads/update_firmware/0.0.0
Binary file not shown.
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,12 @@ jobs:
target: x86_64-unknown-linux-musl

- name: Build binary
working-directory: tools/${{ matrix.build }}
run: cargo build --verbose --release --target x86_64-unknown-linux-musl
run: cargo build -p ${{ matrix.build }} --verbose --release --target x86_64-unknown-linux-musl

- name: Upload release archive
uses: softprops/action-gh-release@v1
with:
files: tools/${{ matrix.build }}/target/x86_64-unknown-linux-musl/release/${{ matrix.build }}
files: target/x86_64-unknown-linux-musl/release/${{ matrix.build }}

build-release:
name: Build release for ${{ matrix.target }}
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: Rust

on:
push:
branches: [ main, next ]
branches: [main, next]
pull_request:
branches: [ main, next ]
branches: [main, next]

jobs:
clippy:
name: Clippy on linux x86
name: Test on linux x86
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -17,7 +17,7 @@ jobs:
env:
RUSTFLAGS: "-D warnings"
- name: Run tests
run: cargo test --verbose
run: cargo test --verbose --all-features

clippy-android:
name: Clippy on android aarch64
Expand All @@ -37,4 +37,3 @@ jobs:
RUST_FLAGS: "-D warnings"
ANDROID_NDK_HOME: ${{ steps.ndk.outputs.ndk-path }}
ANDROID_NDK_ROOT: ${{ steps.ndk.outputs.ndk-path }}

Loading

0 comments on commit 1641dc6

Please sign in to comment.