Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci-lite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,11 @@ jobs:
- 'src/**'
- 'tests/**'
- 'scripts/ci-cancel-aware.sh'
- 'scripts/check-linux-tls-dependencies.sh'
- 'scripts/test-rust-e2e.sh'
- 'scripts/test-rust-with-mock.sh'
- 'vendor/motosan-ai-oauth/**'
- 'vendor/tinychannels'
Comment on lines +154 to +155

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

Trigger the Tauri lane for vendored OAuth changes.

app/src-tauri/Cargo.toml patches motosan-ai-oauth to ../../vendor/motosan-ai-oauth, but this path is only included in rust-core and rust-core-full. Changes to the vendored crate can therefore skip Tauri clippy/build/test coverage.

Add vendor/motosan-ai-oauth/** to the rust-tauri filter.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.github/workflows/ci-lite.yml around lines 154 - 155, Add the
vendor/motosan-ai-oauth/** path to the rust-tauri filter in the CI workflow,
alongside its existing filter entries, so changes to the patched vendored OAuth
crate trigger the Tauri lane.

# Changes here invalidate per-module test scoping → full suite.
rust-core-full:
- '.github/workflows/ci-lite.yml'
Expand All @@ -160,6 +163,9 @@ jobs:
- '.cargo/config.toml'
- 'rust-toolchain.toml'
- 'scripts/ci-cancel-aware.sh'
- 'scripts/check-linux-tls-dependencies.sh'
- 'vendor/motosan-ai-oauth/**'
- 'vendor/tinychannels'
rust-core-src:
- 'src/**'
- 'tests/**'
Expand Down Expand Up @@ -349,6 +355,10 @@ jobs:
- name: Check Rust formatting
run: cargo fmt --all -- --check

- name: Enforce Linux TLS dependency policy
if: needs.changes.outputs['rust-core'] == 'true' || needs.changes.outputs['rust-tauri'] == 'true'
run: bash scripts/check-linux-tls-dependencies.sh

- name: Run clippy (core crate)
if: needs.changes.outputs['rust-core'] == 'true'
run: bash scripts/ci-cancel-aware.sh cargo clippy -p openhuman -- -D warnings
Expand Down
Loading
Loading