Skip to content

Commit b03a54f

Browse files
committed
fix(ci): update RUST_BACKTRACE setting for Windows to 'full' in build and test jobs
1 parent e6a18d1 commit b03a54f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
- name: build sqlite-mcp
149149
run: ${{ matrix.name == 'linux-musl' && matrix.arch == 'arm64' && 'docker exec alpine' || '' }} make extension ${{ matrix.make && matrix.make || ''}}
150150
env:
151-
RUST_BACKTRACE: ${{ matrix.name == 'windows' && '1' || '0' }}
151+
RUST_BACKTRACE: ${{ matrix.name == 'windows' && 'full' || '0' }}
152152

153153
- name: create keychain for codesign
154154
if: matrix.os == 'macos-15'
@@ -233,7 +233,7 @@ jobs:
233233
- name: test sqlite-mcp
234234
if: ( matrix.name == 'linux' && matrix.arch == 'x86_64' ) || matrix.name == 'windows' || ( matrix.name == 'macos' && matrix.arch != 'x86_64' )
235235
env:
236-
RUST_BACKTRACE: ${{ matrix.name == 'windows' && '1' || '0' }}
236+
RUST_BACKTRACE: ${{ matrix.name == 'windows' && 'full' || '0' }}
237237
run: make test ${{ matrix.make && matrix.make || ''}}
238238

239239
- uses: actions/[email protected]

0 commit comments

Comments
 (0)