forked from VsVim/VsVim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
25 lines (18 loc) · 968 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
configuration: Debug
install:
- ps: (new-object Net.WebClient).DownloadString("https://raw.github.com/madskristensen/ExtensionScripts/master/AppVeyor/vsix.ps1") | iex
before_build:
# Updates the version number in the .vsixmanifest and updates the AppVeyor build number to match
- ps: Vsix-IncrementVsixVersion | Vsix-UpdateBuildVersion
build:
project: VimAll.sln
verbosity: minimal
after_build:
- Src\CleanVsix\bin\Debug\CleanVsix.exe Src\VsVim\bin\Debug\VsVim.vsix
test_script:
- Tools\xunit.console.clr4.x86.exe Test\VimCoreTest\bin\Debug\Vim.Core.UnitTest.dll /silent
- Tools\xunit.console.clr4.x86.exe Test\VimWpfTest\bin\Debug\Vim.UI.Wpf.UnitTest.dll /silent
- Tools\xunit.console.clr4.x86.exe Test\VsVimSharedTest\bin\Debug\Vim.VisualStudio.Shared.UnitTest.dll /silent
after_test:
# Pushes the compiled vsix to artifacts and publishes it to vsixgallery.com
- ps: Vsix-PushArtifacts | Vsix-PublishToGallery