forked from PowerShell/vscode-powershell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
28 lines (23 loc) · 894 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
version: '1.8.5-insiders-{build}'
image: Visual Studio 2017
clone_depth: 10
skip_tags: true
branches:
only:
- master
- 2.0.0
environment:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true # Don't download unneeded packages
DOTNET_CLI_TELEMETRY_OPTOUT: true # Don't send telemetry
install:
- git clone https://github.com/PowerShell/PowerShellEditorServices.git ../PowerShellEditorServices
- ps: Install-Product node '6.9.2'
- ps: |
Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force | Out-Null
Install-Module InvokeBuild -RequiredVersion 3.2.1 -Scope CurrentUser -Force | Out-Null
Install-Module platyPS -RequiredVersion 0.7.6 -Scope CurrentUser -Force | Out-Null
- powershell.exe -Command "Install-Module PowerShellGet -Force"
build_script:
- powershell.exe -Command "Invoke-Build"
# The build script takes care of the tests
test: off