diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2017-06-18 22:34:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-18 22:34:08 -0700 |
commit | 867bd2583bf0abc374a096a8c4f41b9b1f38d3a4 (patch) | |
tree | 09b74d392342edb181af8a100b562d91935ffb14 /appveyor.yml | |
parent | ade869ea58a2c43cc6c9981a9e6d97127a19cd92 (diff) | |
parent | 9357837d2e4331a29bdab77120d5baaaec05de50 (diff) |
Merge pull request #150 from zeux/nuget
Add VS2017 to AppVeyor test run
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/appveyor.yml b/appveyor.yml index a42990f..51adf2e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ image: -- Visual Studio 2015 -- Visual Studio 2017 + - Visual Studio 2015 + - Visual Studio 2017 version: "{branch}-{build}" @@ -11,10 +11,11 @@ install: - ps: Import-Module CoApp build_script: - - ps: if ($env:APPVEYOR_BUILD_WORKER_IMAGE -eq "Visual Studio 2017"){.\scripts\nuget_build.ps1} + - ps: if ($env:APPVEYOR_BUILD_WORKER_IMAGE -eq "Visual Studio 2017") { .\scripts\nuget_build.ps1 } test_script: - - ps: if ($env:APPVEYOR_BUILD_WORKER_IMAGE -eq "Visual Studio 2015"){.\tests\autotest-appveyor.ps1} + - ps: if ($env:APPVEYOR_BUILD_WORKER_IMAGE -eq "Visual Studio 2015") { .\tests\autotest-appveyor.ps1 9 10 11 12 14 } + - ps: if ($env:APPVEYOR_BUILD_WORKER_IMAGE -eq "Visual Studio 2017") { .\tests\autotest-appveyor.ps1 15 } artifacts: - - path: .\scripts\*.nupkg
\ No newline at end of file + - path: .\scripts\*.nupkg |