mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-24 06:57:53 +01:00
Export RUST_BACKTRACE=1 in --feature backtrace
CI test
as this test often fails on windows which is hard to debug locally for most contributors.
This commit is contained in:
parent
f082ad40b5
commit
22662efbc4
1 changed files with 2 additions and 1 deletions
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
|
@ -141,8 +141,9 @@ jobs:
|
||||||
cargo test --verbose --color always --features esplora-async
|
cargo test --verbose --color always --features esplora-async
|
||||||
- name: Test backtrace-debug builds on Rust ${{ matrix.toolchain }}
|
- name: Test backtrace-debug builds on Rust ${{ matrix.toolchain }}
|
||||||
if: "matrix.toolchain == 'stable'"
|
if: "matrix.toolchain == 'stable'"
|
||||||
|
shell: bash # Default on Winblows is powershell
|
||||||
run: |
|
run: |
|
||||||
cd lightning && cargo test --verbose --color always --features backtrace
|
cd lightning && RUST_BACKTRACE=1 cargo test --verbose --color always --features backtrace
|
||||||
- name: Test on Rust ${{ matrix.toolchain }} with net-tokio
|
- name: Test on Rust ${{ matrix.toolchain }} with net-tokio
|
||||||
if: "matrix.build-net-tokio && !matrix.coverage"
|
if: "matrix.build-net-tokio && !matrix.coverage"
|
||||||
run: cargo test --verbose --color always
|
run: cargo test --verbose --color always
|
||||||
|
|
Loading…
Add table
Reference in a new issue