From 7a7a1e953ebb2dfed93e7151144c8f49e7649cc0 Mon Sep 17 00:00:00 2001 From: Naveen Date: Sat, 5 Dec 2015 21:14:37 -0500 Subject: [PATCH 1/4] appveyor nuget packages appveyor nuget packages --- appveyor.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index c3086993..cde3cdaa 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,4 +4,11 @@ build_script: - cmd: build.cmd BuildApp - cmd: build.cmd UnitTests - cmd: build.cmd ConventionTests + - cmd: build.cmd CreatePackages test: off +nuget: + account_feed: true + project_feed: true + disable_publish_on_pr: true +artifacts: +- path: '**\octokit*.nupkg' From ee694f7b114dfb4de8af868ae22ad7eb101ef39b Mon Sep 17 00:00:00 2001 From: Naveen Date: Sat, 5 Dec 2015 21:26:52 -0500 Subject: [PATCH 2/4] Create packages in turn calls build app Create packages in turn calls build app so no need to call it. --- appveyor.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index cde3cdaa..6b59d0a1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,10 +1,9 @@ init: - git config --global core.autocrlf input build_script: - - cmd: build.cmd BuildApp + - cmd: build.cmd CreatePackages - cmd: build.cmd UnitTests - cmd: build.cmd ConventionTests - - cmd: build.cmd CreatePackages test: off nuget: account_feed: true From e40caf6fcc15e3502b8b1710fe9d117343fb27a5 Mon Sep 17 00:00:00 2001 From: Naveen Date: Sun, 6 Dec 2015 10:42:12 -0500 Subject: [PATCH 3/4] Removed the disable on PR. --- appveyor.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 6b59d0a1..661238fa 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,6 +8,5 @@ test: off nuget: account_feed: true project_feed: true - disable_publish_on_pr: true artifacts: - path: '**\octokit*.nupkg' From 97b515451b6aa118173d62036997078ad9208a48 Mon Sep 17 00:00:00 2001 From: Naveen Date: Sun, 6 Dec 2015 21:04:12 -0500 Subject: [PATCH 4/4] The test targets were deleting the nuget packages The test targets were deleting the nuget packages so had to include the CreatePackages at the end. --- appveyor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 661238fa..68cb0135 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,9 +1,10 @@ init: - git config --global core.autocrlf input build_script: - - cmd: build.cmd CreatePackages + - cmd: build.cmd BuildApp - cmd: build.cmd UnitTests - cmd: build.cmd ConventionTests + - cmd: build.cmd CreatePackages test: off nuget: account_feed: true