forked from NuGet/NuGet.Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
30 lines (26 loc) · 838 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
version: 4.0.0-xprivate-{build}
pull_requests:
do_not_increment_build_number: true
skip_tags: true
clone_depth: 1
image: Visual Studio 2015
init:
- git config --global core.autocrlf true
install:
- git submodule update --init
build_script:
- ps: .\build.ps1 -Configuration Release -ReleaseLabel xprivate -BuildNumber $env:APPVEYOR_BUILD_NUMBER -SkipTests -SkipILMerge
test_script:
- ps: >-
. .\build\common.ps1
$TestErrors = @()
Invoke-BuildStep 'Running NuGet.Core tests' {
Test-CoreProjects -Configuration Release
} -ev +TestErrors
Invoke-BuildStep 'Running NuGet.Clients tests - Dev14 dependencies' {
Test-ClientsProjects -Configuration Release -MSBuildVersion "14" -SkipProjects 'NuGet.CommandLine.Test'
} -ev +TestErrors
if ($TestErrors) {
$host.SetShouldExit(1)
}
deploy: off