From 5a461a84e0010c3992594fc6b8d523351f0614ce Mon Sep 17 00:00:00 2001 From: Leo Yuriev Date: Fri, 14 Sep 2018 15:11:38 +0300 Subject: [PATCH] mdbx-ci: add test.db to appveyor artefacts (windows). --- appveyor.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 2ee50821..10a9ab29 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -44,10 +44,11 @@ test_script: } if ($mdbx_test -ne "") { - & "$mdbx_test" --pathname=tmp.db --dont-cleanup-after basic | Tee-Object -file test.log | Select-Object -last 42 - & "$mdbx_chk" -nvv tmp.db | Tee-Object -file chk.log | Select-Object -last 42 + & "$mdbx_test" --pathname=test.db --dont-cleanup-after basic | Tee-Object -file test.log | Select-Object -last 42 + & "$mdbx_chk" -nvv test.db | Tee-Object -file chk.log | Select-Object -last 42 } on_failure: - ps: Push-AppveyorArtifact test.log +- ps: Push-AppveyorArtifact test.db - ps: Push-AppveyorArtifact chk.log