Skip to content

Commit 4e60081

Browse files
committed
Add initial appveyor.yml that just performs a full build
1 parent 3bf305f commit 4e60081

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

appveyor.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
version: '0.9.0.{build}'
2+
image: Visual Studio 2017 RC
3+
clone_depth: 10
4+
skip_tags: true
5+
6+
branches:
7+
only:
8+
- master
9+
- develop
10+
11+
install:
12+
- git clone https://github.com/PowerShell/PowerShellEditorServices.git ../PowerShellEditorServices
13+
- ps: |
14+
Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force | Out-Null
15+
Install-Module InvokeBuild -RequiredVersion 3.2.1 -Scope CurrentUser -Force | Out-Null
16+
17+
build_script:
18+
- ps: Invoke-Build Build
19+
20+
# The build script takes care of the tests
21+
test: off

0 commit comments

Comments
 (0)