-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
100 lines (75 loc) · 2.68 KB
/
azure-pipelines.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
# ASP.NET Core (.NET Framework)
# Build and test ASP.NET Core projects targeting the full .NET Framework.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
trigger:
tags:
include:
- release/*
pool:
vmImage: 'windows-latest'
variables:
solution: '**/*.sln'
project: 'Observer.CLI/Observer.CLI.csproj'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
repoUrl: 'https://github.com/leaderanalytics/Observer.CLI'
semVer: ''
steps:
# nbgv need a deep clone
- checkout: self
fetchDepth: 0
# install nbgv tooling
- task: DotNetCoreCLI@2
displayName: Install NBGV tool
inputs:
command: custom
custom: tool
arguments: install --tool-path . nbgv
- script: nbgv cloud -c
displayName: nbgv cloud set version
# allow nbgv to set the version
- bash: |
echo Build.SourceBranch is $(Build.SourceBranch)
echo Build.BuildNumber is $(Build.BuildNumber)
displayName: 'Print Tag and BuildNumber'
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'
vstsFeed: 'LeaderAnalyticsFeed'
- task: DotNetCoreCLI@2
displayName: 'dotnet build'
inputs:
command: 'build'
arguments: '--configuration $(buildConfiguration)'
projects: $(project)
- task: DotNetCoreCLI@2
displayName: "dotnet publish"
inputs:
command: publish
publishWebProjects: false
projects: $(project)
arguments: -c Release -r win-x64 --self-contained true --output $(Build.ArtifactStagingDirectory)\publish
zipAfterPublish: false
- task: AzureKeyVault@2
name: KeyVaultSecrets
displayName: Get github api key from Key Vault
inputs:
azureSubscription: 'All Azure Services'
KeyVaultName: 'LeaderAnalyticsVault'
SecretsFilter: 'github-token'
- powershell: Write-Host "##vso[build.updatebuildnumber]$(GitBuildVersion)"
displayName: 'Update build number to GitBuildVersion'
- powershell: |
$tmp = '$(GitBuildVersion)'.Substring(0, '$(GitBuildVersion)'.LastIndexof('.'))
Write-Host "##vso[task.setvariable variable=semVer;]$tmp"
displayName: Trim build off GitBuildVersion
- bash: |
echo Build.SourceBranch is $(Build.SourceBranch)
echo semVer is $(semVer)
displayName: 'Print Tag and BuildNumber'
- script: |
dotnet tool install -g vpk
vpk download github --repoUrl $(repoUrl)
vpk pack -u LeaderAnalytics.Vyntix.Observer.CLI --packTitle "Observer CLI" -v $(semVer) -p $(Build.ArtifactStagingDirectory)\publish\Observer.CLI -e Obs.exe -c win
vpk upload github --repoUrl $(repoUrl) --publish --releaseName "Observer CLI for Windows $(semVer)" --tag windows/$(Build.BuildNumber) --token $(github-token)