Quote VS Code Dosh proxy commands on Windows
ci / test (push) Canceled after 0s
ci / fuzz-smoke (push) Canceled after 0s
ci / macos-client (macos-aarch64, macos-14) (push) Canceled after 0s
ci / macos-client (macos-x86_64, macos-13) (push) Canceled after 0s
ci / windows-client (push) Canceled after 0s
ci / package-release (linux-x86_64, ubuntu-latest, , , ) (push) Canceled after 0s
ci / package-release (macos-aarch64, macos-14, , , ) (push) Canceled after 0s
ci / package-release (macos-x86_64, macos-13, , , ) (push) Canceled after 0s
ci / package-release (windows-aarch64, windows-latest, aarch64, windows, aarch64-pc-windows-msvc) (push) Canceled after 0s
ci / package-release (windows-x86_64, windows-latest, , , ) (push) Canceled after 0s
ci / remote-bench (push) Canceled after 0s
ci / publish-gitea-release (push) Canceled after 0s

This commit is contained in:
DuProcess
2026-07-16 22:35:00 -04:00
parent 8377a82795
commit 9bf6184dbe
4 changed files with 135 additions and 19 deletions
+8
View File
@@ -82,6 +82,10 @@ fn release_gates_test_all_targets() {
macos_client.contains("run: cargo test --all-targets"),
"macOS CI must run Rust tests, not only release packaging"
);
assert!(
macos_client.contains("run: node --test vscode-extension/extension.test.js"),
"macOS CI must exercise VS Code helper quoting"
);
let windows_client = ci
.split("windows-client:")
.nth(1)
@@ -100,6 +104,10 @@ fn release_gates_test_all_targets() {
windows_client.contains("run: cargo test --all-targets"),
"Windows CI must run Rust tests, not only build/package"
);
assert!(
windows_client.contains("run: node --test vscode-extension/extension.test.js"),
"Windows CI must exercise VS Code helper quoting"
);
}
#[test]