forked from thomasgalliker/HttpClient.Caching
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.yml
More file actions
118 lines (101 loc) · 3.32 KB
/
build.yml
File metadata and controls
118 lines (101 loc) · 3.32 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
####################################################################
# VSTS Build Configuration, Version 1.4
#
# (c)2022 superdev GmbH
####################################################################
name: $[format('{0}', variables['buildName'])]
pool:
vmImage: 'windows-2019'
trigger:
branches:
include:
- master
- develop
- feature/*
- bugfix/*
paths:
exclude:
- README.md
- Images/*
- Samples/*
variables:
solution: 'HttpClient.Caching.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
majorVersion: 1
minorVersion: 2
patchVersion: $[counter(format('{0}.{1}', variables.majorVersion, variables.minorVersion), 0)]
${{ if eq(variables['Build.SourceBranch'], 'refs/heads/master') }}:
# Versioning: 1.0.0
semVersion: $[format('{0}.{1}.{2}', variables.majorVersion, variables.minorVersion, variables.patchVersion)]
${{ if and(ne(variables['Build.SourceBranch'], 'refs/heads/master'), not(startsWith(variables['Build.SourceBranch'], 'refs/pull/'))) }}:
# Versioning: 1.0.0-pre
semVersion: $[format('{0}.{1}.{2}-pre', variables.majorVersion, variables.minorVersion, variables.patchVersion)]
${{ if startsWith(variables['Build.SourceBranch'], 'refs/pull/') }}:
# Versioning: 1.0.0-pr.000000001
semVersion: $[format('{0}.{1}.{2}-pr.{3}', variables.majorVersion, variables.minorVersion, variables.patchVersion, variables['System.PullRequest.PullRequestId'])]
buildName: $[format('{0}', variables.semVersion)]
steps:
- task: Bash@3
displayName: 'Print all variables'
inputs:
targetType: 'inline'
script: 'env | sort'
- task: Assembly-Info-NetCore@2
displayName: 'Update Assembly Info'
inputs:
Path: '$(Build.SourcesDirectory)'
FileNames: |
**/*.csproj
InsertAttributes: true
FileEncoding: 'auto'
WriteBOM: false
Product: 'HttpClient.Caching'
Description: ''
Company: 'superdev GmbH'
Copyright: '(c) $(date:YYYY) superdev GmbH'
VersionNumber: '$(Build.BuildNumber)'
FileVersionNumber: '$(Build.BuildNumber)'
InformationalVersion: '$(Build.BuildNumber)'
PackageVersion: '$(Build.BuildNumber)'
LogLevel: 'verbose'
FailOnWarning: false
DisableTelemetry: false'
- task: NuGetToolInstaller@0
displayName: 'Use NuGet 5.x'
inputs:
versionSpec: 5.x
- task: NuGetCommand@2
displayName: 'NuGet restore'
inputs:
restoreSolution: '$(solution)'
- task: VSBuild@1
displayName: 'Build solution'
inputs:
solution: '$(solution)'
msbuildArgs: ''
platform: '$(BuildPlatform)'
configuration: '$(BuildConfiguration)'
- task: DotNetCoreCLI@2
displayName: 'Run UnitTests'
inputs:
command: test
projects: '**/*.Tests.csproj'
arguments: '--no-restore --no-build --configuration $(buildConfiguration)'
- task: DotNetCoreCLI@2
displayName: 'Pack HttpClient.Caching'
inputs:
command: pack
packagesToPack: HttpClient.Caching/HttpClient.Caching.csproj
versioningScheme: byEnvVar
versionEnvVar: semVersion
- task: CopyFiles@2
displayName: 'Copy Files to: $(Build.ArtifactStagingDirectory)'
inputs:
SourceFolder: '$(system.defaultworkingdirectory)'
Contents: |
**\bin\$(BuildConfiguration)\**
**\bin\*.nupkg
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: drop'