From b2311ac5d9c910210d946ee6664c04d85ed50d66 Mon Sep 17 00:00:00 2001 From: kinichiro Date: Tue, 7 Jul 2020 22:49:58 +0900 Subject: [PATCH] Keep test log as artifact --- appveyor.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index fd59c2c..df1b448 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -44,3 +44,12 @@ build_script: test_script: - ctest -C %CONFIG% --timeout 150 --output-on-failure + +on_failure: + - 7z a Testing.zip Testing + - appveyor PushArtifact Testing.zip + +artifacts: + - path: build\Testing + name: Testing + type: zip