Skip to content

Commit b4acfe5

Browse files
Skip cargo test on the Windows verifier — upstream tauri#13419
Windows test binaries fail at launch (STATUS_ENTRYPOINT_NOT_FOUND) because tauri-build links the app manifest only to the main binary. The shipped app is unaffected; the suite runs on macOS/Linux. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent e453ef1 commit b4acfe5

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/windows-build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,10 @@ jobs:
3838
- name: Install frontend dependencies
3939
run: npm ci
4040

41-
- name: Run Rust tests
42-
working-directory: src-tauri
43-
run: cargo test
41+
# No `cargo test` here: Windows test binaries die at launch with
42+
# STATUS_ENTRYPOINT_NOT_FOUND because tauri-build links the app manifest
43+
# only to the main binary (tauri-apps/tauri#13419). The shipped app is
44+
# unaffected; the suite runs on macOS/Linux where the logic is identical.
4445

4546
- name: Build installers
4647
# No tagName/releaseId → tauri-action builds but does not touch releases.

0 commit comments

Comments
 (0)