Skip to content

Commit cbafa79

Browse files
doublegateclaude
andcommitted
fix(ci): correct --exclude package name in all workflows
The --exclude flag referenced `wraith-redops-client` which does not match any Cargo package. The actual package name is `operator-client`. This caused CI failures when tauri::generate_context!() panicked due to missing frontend dist directory. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 04d4dae commit cbafa79

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ env:
5151
--exclude wraith-publish
5252
--exclude wraith-vault
5353
--exclude wraith-recon
54-
--exclude wraith-redops-client
54+
--exclude operator-client
5555
--exclude team-server
5656
5757
jobs:
@@ -199,7 +199,7 @@ jobs:
199199
--exclude wraith-publish
200200
--exclude wraith-vault
201201
--exclude wraith-recon
202-
--exclude wraith-redops-client
202+
--exclude operator-client
203203
--exclude team-server
204204
${{ matrix.test_flags }}
205205
shell: bash
@@ -258,7 +258,7 @@ jobs:
258258
--exclude wraith-publish
259259
--exclude wraith-vault
260260
--exclude wraith-recon
261-
--exclude wraith-redops-client
261+
--exclude operator-client
262262
--exclude team-server
263263
-- -D warnings
264264
@@ -314,7 +314,7 @@ jobs:
314314
--exclude wraith-publish
315315
--exclude wraith-vault
316316
--exclude wraith-recon
317-
--exclude wraith-redops-client
317+
--exclude operator-client
318318
--exclude team-server
319319
env:
320320
RUSTDOCFLAGS: -Dwarnings
@@ -370,7 +370,7 @@ jobs:
370370
--exclude wraith-publish
371371
--exclude wraith-vault
372372
--exclude wraith-recon
373-
--exclude wraith-redops-client
373+
--exclude operator-client
374374
--exclude team-server
375375
376376
#############################################################################
@@ -430,7 +430,7 @@ jobs:
430430
--exclude wraith-publish
431431
--exclude wraith-vault
432432
--exclude wraith-recon
433-
--exclude wraith-redops-client
433+
--exclude operator-client
434434
--exclude team-server
435435
--lcov --output-path lcov.info
436436

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
# CodeQL needs the build to understand the code structure
9292
- name: Build project
9393
run: |
94-
cargo build --workspace --all-features --release --exclude wraith-transfer --exclude wraith-chat --exclude wraith-sync --exclude wraith-share --exclude wraith-stream --exclude wraith-mesh --exclude wraith-publish --exclude wraith-vault --exclude wraith-recon --exclude wraith-redops-client --exclude team-server
94+
cargo build --workspace --all-features --release --exclude wraith-transfer --exclude wraith-chat --exclude wraith-sync --exclude wraith-share --exclude wraith-stream --exclude wraith-mesh --exclude wraith-publish --exclude wraith-vault --exclude wraith-recon --exclude operator-client --exclude team-server
9595
9696
# Perform CodeQL Analysis
9797
- name: Perform CodeQL Analysis

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,15 +116,15 @@ jobs:
116116
${{ runner.os }}-cargo-
117117
118118
- name: Build documentation
119-
run: cargo doc --workspace --no-deps --exclude wraith-transfer --exclude wraith-chat --exclude wraith-sync --exclude wraith-share --exclude wraith-stream --exclude wraith-mesh --exclude wraith-publish --exclude wraith-vault --exclude wraith-recon --exclude wraith-redops-client --exclude team-server
119+
run: cargo doc --workspace --no-deps --exclude wraith-transfer --exclude wraith-chat --exclude wraith-sync --exclude wraith-share --exclude wraith-stream --exclude wraith-mesh --exclude wraith-publish --exclude wraith-vault --exclude wraith-recon --exclude operator-client --exclude team-server
120120
env:
121121
RUSTDOCFLAGS: -Dwarnings
122122

123123
- name: Check for missing documentation
124124
run: |
125125
# Count documented vs undocumented items
126126
echo "Checking documentation coverage..."
127-
cargo doc --workspace --no-deps --exclude wraith-transfer --exclude wraith-chat --exclude wraith-sync --exclude wraith-share --exclude wraith-stream --exclude wraith-mesh --exclude wraith-publish --exclude wraith-vault --exclude wraith-recon --exclude wraith-redops-client --exclude team-server 2>&1 | grep -c "warning: missing documentation" || echo "0 missing documentation warnings"
127+
cargo doc --workspace --no-deps --exclude wraith-transfer --exclude wraith-chat --exclude wraith-sync --exclude wraith-share --exclude wraith-stream --exclude wraith-mesh --exclude wraith-publish --exclude wraith-vault --exclude wraith-recon --exclude operator-client --exclude team-server 2>&1 | grep -c "warning: missing documentation" || echo "0 missing documentation warnings"
128128
129129
#############################################################################
130130
# Table of Contents Validation

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,10 @@ jobs:
155155
VERSION: ${{ needs.validate.outputs.version }}
156156
run: |
157157
echo "Running test suite for version $VERSION"
158-
cargo test --workspace --all-features --exclude wraith-transfer --exclude wraith-chat --exclude wraith-sync --exclude wraith-share --exclude wraith-stream --exclude wraith-mesh --exclude wraith-publish --exclude wraith-vault --exclude wraith-recon --exclude wraith-redops-client --exclude team-server --verbose
158+
cargo test --workspace --all-features --exclude wraith-transfer --exclude wraith-chat --exclude wraith-sync --exclude wraith-share --exclude wraith-stream --exclude wraith-mesh --exclude wraith-publish --exclude wraith-vault --exclude wraith-recon --exclude operator-client --exclude team-server --verbose
159159
160160
- name: Run clippy checks
161-
run: cargo clippy --workspace --all-features --exclude wraith-transfer --exclude wraith-chat --exclude wraith-sync --exclude wraith-share --exclude wraith-stream --exclude wraith-mesh --exclude wraith-publish --exclude wraith-vault --exclude wraith-recon --exclude wraith-redops-client --exclude team-server -- -D warnings
161+
run: cargo clippy --workspace --all-features --exclude wraith-transfer --exclude wraith-chat --exclude wraith-sync --exclude wraith-share --exclude wraith-stream --exclude wraith-mesh --exclude wraith-publish --exclude wraith-vault --exclude wraith-recon --exclude operator-client --exclude team-server -- -D warnings
162162

163163
- name: Check formatting
164164
run: cargo fmt --all -- --check

0 commit comments

Comments
 (0)