Skip to content
Draft
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
7 changes: 7 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,13 @@ jobs:
~/.cargo/git/db
key: ${{ runner.os }}-cargo-${{ hashFiles('./Cargo.toml') }}

# Disable PDB generation on Windows to avoid LNK1318 PDB size limits with large test binaries
# (wasmtime 35+ makes domain_client_operator test binary exceed PDB page count limits)
# /DEBUG:NONE tells the MSVC linker to skip PDB file creation entirely
- name: Configure Windows linker
run: echo "RUSTFLAGS=$env:RUSTFLAGS -C debuginfo=0 -C link-arg=/DEBUG:NONE" >> $env:GITHUB_ENV
if: runner.os == 'Windows'

- name: cargo nextest run --locked
run: |
cargo -Zgitoxide -Zgit nextest run --locked
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
/target
/test/subspace-test-fuzzer/target
/test/subspace-test-fuzzer/output
.envrc
Loading
Loading