Skip to content

Commit fa919df

Browse files
branchseerclaude
andcommitted
fix(ci): exclude vite_pty from zigbuild tests
The ctor crate used by subprocess_test is incompatible with zig linker, causing all vite_pty PTY tests to timeout. vite_pty is tested natively on macOS and Windows CI. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 416406a commit fa919df

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ jobs:
8484
- run: cargo test --target ${{ matrix.target }}
8585
if: ${{ matrix.os != 'ubuntu-latest' }}
8686

87-
- run: cargo-zigbuild test --target x86_64-unknown-linux-gnu.2.17
87+
# vite_pty uses subprocess_test (ctor crate) which is incompatible with zig linker;
88+
# vite_pty is tested natively on macOS and Windows
89+
- run: cargo-zigbuild test --target x86_64-unknown-linux-gnu.2.17 --exclude vite_pty
8890
if: ${{ matrix.os == 'ubuntu-latest' }}
8991

9092
fmt:

0 commit comments

Comments
 (0)