From 3a8073cca22af01f1eb30b145c065eaad40b1f5b Mon Sep 17 00:00:00 2001 From: Ivan Gagis Date: Thu, 15 Jun 2017 11:05:28 +0300 Subject: Appveyor image set to VS2017 --- appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'appveyor.yml') diff --git a/appveyor.yml b/appveyor.yml index eaf1aee..80e9386 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,3 +1,5 @@ +os: Visual Studio 2017 + version: "{branch}-{build}" install: -- cgit v1.2.3 From d8f9148d367c3d2a36eca263bce662fdcf60f518 Mon Sep 17 00:00:00 2001 From: Ivan Gagis Date: Thu, 15 Jun 2017 11:11:36 +0300 Subject: set v141 tools environment for building --- appveyor.yml | 2 -- 1 file changed, 2 deletions(-) (limited to 'appveyor.yml') diff --git a/appveyor.yml b/appveyor.yml index 80e9386..eaf1aee 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,5 +1,3 @@ -os: Visual Studio 2017 - version: "{branch}-{build}" install: -- cgit v1.2.3 From 042eae4c8353ab10ae2b0fa761259714a98285cb Mon Sep 17 00:00:00 2001 From: Ivan Gagis Date: Thu, 15 Jun 2017 11:14:28 +0300 Subject: Appveyor image set to VS2017 --- appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'appveyor.yml') diff --git a/appveyor.yml b/appveyor.yml index eaf1aee..80e9386 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,3 +1,5 @@ +os: Visual Studio 2017 + version: "{branch}-{build}" install: -- cgit v1.2.3 From 4dc10541040d9da4389f2a5da62330bab570e8b8 Mon Sep 17 00:00:00 2001 From: Ivan Gagis Date: Thu, 15 Jun 2017 11:32:46 +0300 Subject: use powershell instead of cmd --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'appveyor.yml') diff --git a/appveyor.yml b/appveyor.yml index 80e9386..20c502b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,7 +9,7 @@ install: - ps: Import-Module CoApp build_script: - - ps: .\scripts\nuget_build.bat + - ps: .\scripts\nuget_build.ps1 test_script: - ps: .\tests\autotest-appveyor.ps1 -- cgit v1.2.3 From b66ca4f3266d4b092bd358b7227d628fc6cb14fe Mon Sep 17 00:00:00 2001 From: Ivan Gagis Date: Thu, 15 Jun 2017 11:49:10 +0300 Subject: use 2 images to build on appveyor --- appveyor.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'appveyor.yml') diff --git a/appveyor.yml b/appveyor.yml index 20c502b..a42990f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,6 @@ -os: Visual Studio 2017 +image: +- Visual Studio 2015 +- Visual Studio 2017 version: "{branch}-{build}" @@ -9,10 +11,10 @@ install: - ps: Import-Module CoApp build_script: - - ps: .\scripts\nuget_build.ps1 + - ps: if ($env:APPVEYOR_BUILD_WORKER_IMAGE -eq "Visual Studio 2017"){.\scripts\nuget_build.ps1} test_script: - - ps: .\tests\autotest-appveyor.ps1 + - ps: if ($env:APPVEYOR_BUILD_WORKER_IMAGE -eq "Visual Studio 2015"){.\tests\autotest-appveyor.ps1} artifacts: - path: .\scripts\*.nupkg \ No newline at end of file -- cgit v1.2.3