From 9b456f48d988c567104d7bde3e2cb5234195be77 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Wed, 19 Sep 2018 11:53:11 -0700 Subject: [PATCH] Set RUST_BACKTRACE=1 on AppVeyor (#650) ## Motivation Currently, the `RUST_BACKTRACE` environment variable is set to `1` on Travis CI builds: https://github.com/tokio-rs/tokio/blob/0ca973a7ebc5b8a29beac1ccb6c73ef26ddcbf22/.travis.yml#L49 However, it's not set on AppVeyor. This can make debugging Windows-specific CI failures challenging for developers on other operating systems. ## Solution This branch sets `RUST_BACKTRACE=1` on AppVeyor. Signed-off-by: Eliza Weisman --- .appveyor.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.appveyor.yml b/.appveyor.yml index a4c3f3ee9..a051a20d1 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -9,6 +9,7 @@ install: - appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe - rustup-init.exe -y --default-host %TARGET% - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin + - set RUST_BACKTRACE=1 - rustc -V - cargo -V