ci: run with RUST_BACKTRACE=1 to provide more info on failure

This commit is contained in:
Mikolaj Wielgus 2024-08-27 00:38:27 +02:00
parent af081aad1d
commit 449e6885a8
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ matrix:
steps: steps:
build_egui: build_egui:
image: rust image: rust
environment: [CARGO_TERM_COLOR=always] environment: [RUST_BACKTRACE=1,CARGO_TERM_COLOR=always]
commands: commands:
- rustup default "$CHANNEL" - rustup default "$CHANNEL"
- cargo build --features "$FEATURES" --bin "topola-egui" - cargo build --features "$FEATURES" --bin "topola-egui"

View File

@ -8,7 +8,7 @@ matrix:
steps: steps:
test: test:
image: rust image: rust
environment: [CARGO_TERM_COLOR=always] environment: [RUST_BACKTRACE=1,CARGO_TERM_COLOR=always]
commands: commands:
- rustup default "$CHANNEL" - rustup default "$CHANNEL"
- cargo test --verbose --features "$FEATURES" - cargo test --verbose --features "$FEATURES"