Skip to content
Open
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
1 change: 1 addition & 0 deletions .github/workflows/test-js.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
- uses: baptiste0928/cargo-install@v3
with:
crate: wasm-pack
cache-key: 20250701-1

- run: ./.github/workflows/scripts/set_version.sh

Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/test-rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,11 @@ jobs:
- uses: baptiste0928/cargo-install@v3
with:
crate: cargo-insta
cache-key: 20250701-1
- uses: baptiste0928/cargo-install@v3
with:
crate: cargo-nextest
cache-key: 20250701-1
- run: ./.github/workflows/scripts/set_version.sh
shell: bash
- name: 💰 Cache
Expand Down Expand Up @@ -111,6 +113,12 @@ jobs:
if: ${{ contains(inputs.features, 'test-dbs-external') }}
- name: 📋 Test
uses: clechasseur/rs-cargo@v3
env:
# https://github.com/rust-lang/rust/issues/141626#issuecomment-2919419236
# note: this may be temporary
RUSTFLAGS: >-
-Cdebuginfo=0 ${{ inputs.target == 'x86_64-pc-windows-msvc' &&
'-Clink-arg=/DEBUG:NONE' || '' }}
with:
command: insta
# Here, we also add:
Expand Down
Loading