From 47753c47a570c7f4ff23c19a27e52d1240571aca Mon Sep 17 00:00:00 2001 From: Leonardo Galli Date: Tue, 11 Apr 2017 19:40:13 +0200 Subject: [PATCH 1/3] Now artifacts get pushed even if tests fail --- appveyor.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index ce00cb4f7..92f2897f5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -37,6 +37,11 @@ cache: pull_requests: do_not_increment_build_number: true +on_failure: + - ps: Get-ChildItem .\_artifacts\*.zip | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } + - ps: Get-ChildItem .\_artifacts\*.exe | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } + - ps: Get-ChildItem .\_artifacts\*.tar.gz | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } + only_commits: files: - src/ From 56ac87c76002ed4a9695ce4bfa323d057265ba8c Mon Sep 17 00:00:00 2001 From: Leonardo Galli Date: Tue, 11 Apr 2017 21:19:31 +0200 Subject: [PATCH 2/3] Disabled installer being picked up, causes error with update api. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 92f2897f5..505ded3fb 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -27,7 +27,7 @@ test: artifacts: - path: '_artifacts\*.zip' - - path: '_artifacts\*.exe' +# - path: '_artifacts\*.exe' - path: '_artifacts\*.tar.gz' cache: From 36ea6c6b991b5a14b248b777262f38336f5b0125 Mon Sep 17 00:00:00 2001 From: Leonardo Galli Date: Wed, 12 Apr 2017 12:23:07 +0200 Subject: [PATCH 3/3] Turn installer back on. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 505ded3fb..92f2897f5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -27,7 +27,7 @@ test: artifacts: - path: '_artifacts\*.zip' -# - path: '_artifacts\*.exe' + - path: '_artifacts\*.exe' - path: '_artifacts\*.tar.gz' cache: