-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
48 lines (39 loc) · 1.39 KB
/
azure-pipelines.yml
File metadata and controls
48 lines (39 loc) · 1.39 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
# ASP.NET Core
# Build and test ASP.NET Core projects targeting .NET Core.
# Add steps that run tests, create a NuGet package, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
name: $(majorMinorVersion).$(semanticVersion)
trigger:
- master
pr:
- master
pool:
vmImage: 'ubuntu-latest'
variables:
buildConfiguration: 'Release'
majorMinorVersion: 1.0
semanticVersion: $[counter(variables['majorMinorVersion'], 0)]
steps:
- script: dotnet build src/ConsistentHashing.sln --configuration $(buildConfiguration)
displayName: 'dotnet build $(buildConfiguration)'
- task: DotNetCoreCLI@2
displayName: 'Run unit tests'
inputs:
command: test
projects: 'src/UnitTests/*.csproj'
arguments: '--configuration $(buildConfiguration)'
- task: DotNetCoreCLI@2
displayName: 'Create NuGet package'
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
inputs:
command: pack
configuration: $(buildConfiguration)
packagesToPack: 'src/ConsistentHashing/ConsistentHashing.csproj'
packDirectory: $(Build.ArtifactStagingDirectory)
versioningScheme: byBuildNumber
- task: PublishBuildArtifacts@1
displayName: 'Publish artifacts'
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
inputs:
pathtoPublish: '$(Build.ArtifactStagingDirectory)'
artifactName: 'nuget_package'