-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathappveyor.yml
99 lines (78 loc) · 3.24 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Notes:
# - Indent each level of configuration with 2 spaces. Do not use tabs!
# - All section names are case-sensitive.
# - Section names should be unique on each level.
#---------------------------------#
# environment configuration #
#---------------------------------#
# Build VM template
image: Visual Studio 2019
environment:
major: 2
minor: 3
patch: 0
publication_token:
secure: zdEn8EOBXHZa4gnNjtzCd2STHNsGuYvmqDS9nadj09gKLSy0kQinOx8yY3LtfGYOQgjspUVnRH+Iabw9NtvI4g==
# scripts that are called at very beginning, before repo cloning
init:
- git config --global core.autocrlf true
- ps: |
$isCI = $Env:APPVEYOR_REPO_TAG -eq $false
$isBranch = $isCI -and ($Env:APPVEYOR_REPO_BRANCH -ne 'master')
$branchTag = "$(if ($isBranch) { $Env:APPVEYOR_REPO_BRANCH + '-' } else { $null })"
$Env:VersionPrefix = "$($Env:major).$($Env:minor).$($Env:patch)"
$Env:VersionSuffix = "$(if ($isCI) { $branchTag + 'CI' + $Env:APPVEYOR_BUILD_NUMBER } else { $null })"
appveyor UpdateBuild -Version "$($Env:VersionPrefix)$(if ($isCI) { '-' } else { $null })$($Env:VersionSuffix)"
#---------------------------------#
# build configuration #
#---------------------------------#
# build Configuration, i.e. Debug, Release, etc.
configuration: Release
# scripts to run before build
before_build:
- cd extension
- ps: |
$manifestPath = (Get-ChildItem .\*Package\*.vsixmanifest).FullName
$manifestXml = [xml](Get-Content $manifestPath)
$manifestXml.PackageManifest.Metadata.Identity.Version = "$($Env:VersionPrefix).$($Env:APPVEYOR_BUILD_NUMBER)"
$manifestXml.Save($manifestPath)
- nuget restore
- dotnet restore
build:
project: extension\EFDocumentationGenerator.sln
verbosity: minimal # MSBuild verbosity level
dotnet_csproj:
patch: true
file: 'extension\**\*.csproj'
assembly_version: $(VersionPrefix).0
file_version: $(VersionPrefix).$(APPVEYOR_BUILD_NUMBER)
informational_version: '{version}'
nuget:
project_feed: true
disable_publish_on_pr: true
#---------------------------------#
# tests configuration #
#---------------------------------#
test_script:
- ps: cd Tests.Unit
- ps: dotnet xunit --configuration $Env:CONFIGURATION --no-build --fx-version 2.0.0
#---------------------------------#
# artifacts configuration #
#---------------------------------#
artifacts:
- path: 'extension\**\*.vsix'
name: vsix
#---------------------------------#
# deployment configuration #
#---------------------------------#
deploy_script:
- ps: |
if ($Env:APPVEYOR_REPO_TAG -eq $true) {
cd "$($Env:APPVEYOR_BUILD_FOLDER)\extension\EFDocumentationGenerator.Package"
$nugetCache = nuget locals all -list | where { $_ -like 'global-packages:*' } | %{ $_ -split ': ' } | select -last 1
$vsixPublisher = Get-ChildItem -File ($nugetCache + '\microsoft.vssdk.buildtools') -recurse |
where { $_.Name -eq 'VsixPublisher.exe' } |
sort -Descending -Property CreationTime |
select -First 1 -ExpandProperty FullName
& $vsixPublisher publish -payload $artifacts['vsix'].path -publishManifest 'manifest.json' -personalAccessToken $Env:publication_token
}