From 29cc8386a2f7911eaa9336692a2c5544d8b4734f Mon Sep 17 00:00:00 2001 From: Azat Khuzhin Date: Sat, 18 Aug 2018 23:50:10 +0300 Subject: [PATCH] appveyor: add all build tree into artifacts in case of failure This will help in investigations of win32 failures... P.S. looks like there is no better way, since "artifacts.*.publish_on_failure" hadn't been implemented yet (while was requiested in 2015). --- appveyor.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 45c651e1..18170bb8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -59,3 +59,7 @@ build_script: $env:CTEST_PARALLEL_LEVEL="20" ctest --output-on-failure } + +on_failure: + - 7z a libevent.zip . + - appveyor PushArtifact libevent.zip -- 2.40.0