build: don't check for sidecars during donut-proxy build

This commit is contained in:
zhom
2025-11-29 14:02:31 +04:00
parent 84af35c4f5
commit 5d7ed0430e
4 changed files with 27 additions and 68 deletions
-6
View File
@@ -115,8 +115,6 @@ jobs:
- name: Build donut-proxy sidecar
shell: bash
working-directory: ./src-tauri
env:
TARGET: ${{ steps.host_target.outputs.target }}
run: cargo build --bin donut-proxy
- name: Copy donut-proxy binary to Tauri binaries
@@ -139,14 +137,10 @@ jobs:
working-directory: src-tauri
- name: Run clippy check and deny warnings
env:
TARGET: ${{ steps.host_target.outputs.target }}
run: cargo clippy --all-targets --all-features -- -D warnings -D clippy::all
working-directory: src-tauri
- name: Run Rust tests
env:
TARGET: ${{ steps.host_target.outputs.target }}
run: cargo test
working-directory: src-tauri