-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
39 lines (30 loc) · 929 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
skip_tags: true
skip_commits:
message: /(docs|chore).*|!skipci/
files:
- '**/*.md'
image: Visual Studio 2019
clone_folder: C:\projects\VimTabCompletion
environment:
NugetApiKey:
secure: pQNh/Ufe3iH2DwBCI6/MEFq+Az3WouUxBWpsLztdukB7M4k2BfLJpUo+MrKiou+S
install:
- cinst vim
- cinst universal-ctags
- cinst git
- pwsh: refreshenv
- pwsh: Get-Command -Name vim -All -Verbose | Format-List
- pwsh: Get-Command -Name readtags -All -Verbose | Format-List
- pwsh: Get-Command -Name git -All -Verbose | Format-List
cache:
- _build_dependencies_ -> *.Depend.psd1
build: off
test_script:
- ps: $PSVersionTable
- ps: .\build.ps1 -Task Build, Test
- ps: $Error
- pwsh: $PSVersionTable
- pwsh: .\build.ps1
- pwsh: $Error
# on_finish:
# - pwsh: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))