Skip to content

Commit 02e96e3

Browse files
author
Devdutt Shenoi
committed
Merge remote-tracking branch 'origin/main' into update_uplink_config
2 parents b6b8f00 + af62cdb commit 02e96e3

File tree

15 files changed

+731
-480
lines changed

15 files changed

+731
-480
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,12 @@ jobs:
2323
target: x86_64-unknown-linux-musl
2424

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

2928
- name: Upload release archive
3029
uses: softprops/action-gh-release@v1
3130
with:
32-
files: tools/${{ matrix.build }}/target/x86_64-unknown-linux-musl/release/${{ matrix.build }}
31+
files: target/x86_64-unknown-linux-musl/release/${{ matrix.build }}
3332

3433
build-release:
3534
name: Build release for ${{ matrix.target }}

.github/workflows/rust.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ name: Rust
22

33
on:
44
push:
5-
branches: [ main, next ]
5+
branches: [main, next]
66
pull_request:
7-
branches: [ main, next ]
7+
branches: [main, next]
88

99
jobs:
1010
clippy:
11-
name: Clippy on linux x86
11+
name: Test on linux x86
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
@@ -17,7 +17,7 @@ jobs:
1717
env:
1818
RUSTFLAGS: "-D warnings"
1919
- name: Run tests
20-
run: cargo test --verbose
20+
run: cargo test --verbose --all-features
2121

2222
clippy-android:
2323
name: Clippy on android aarch64
@@ -37,4 +37,3 @@ jobs:
3737
RUST_FLAGS: "-D warnings"
3838
ANDROID_NDK_HOME: ${{ steps.ndk.outputs.ndk-path }}
3939
ANDROID_NDK_ROOT: ${{ steps.ndk.outputs.ndk-path }}
40-

0 commit comments

Comments
 (0)