summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2017-06-18 20:49:11 -0700
committerGitHub <noreply@github.com>2017-06-18 20:49:11 -0700
commitade869ea58a2c43cc6c9981a9e6d97127a19cd92 (patch)
tree436bf6c28704b400dd23b6c69900598bef61976f /appveyor.yml
parent0027b6ac7907dce79cc2f13230c7ecb46ce14ff6 (diff)
parentb66ca4f3266d4b092bd358b7227d628fc6cb14fe (diff)
Merge pull request #147 from igagis/master
VS2017 project + NuGet support
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml
index eaf1aee..a42990f 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,3 +1,7 @@
+image:
+- Visual Studio 2015
+- Visual Studio 2017
+
version: "{branch}-{build}"
install:
@@ -7,10 +11,10 @@ install:
- ps: Import-Module CoApp
build_script:
- - ps: .\scripts\nuget_build.bat
+ - 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