-
Notifications
You must be signed in to change notification settings - Fork 1
/
azure-pipelines.yml
84 lines (72 loc) · 2.48 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
name: $(TeamProject)_$(Build.DefinitionName)_$(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r)
trigger:
branches:
include:
- dev
- release/*
- hotfix/*
- support/*
tags:
include:
- release-*
parameters:
- name: cache_nuget
displayName: Cache NuGet packages
type: boolean
default: false
variables:
nodeVersion: 18.x
solution: Umbraco.Commerce.PaymentProviders.Opayo.sln
buildConfiguration: Release
DOTNET_NOLOGO: true
DOTNET_GENERATE_ASPNET_CERTIFICATE: false
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
stages:
- stage: Build
variables:
NUGET_PACKAGES: $(Pipeline.Workspace)/.nuget/packages
jobs:
- job: Build
pool:
vmImage: ubuntu-latest
steps:
# Checkout source (avoid shallow clone to calculate version height)
- checkout: self
fetchDepth: 0
# Setup build environment
- task: NuGetAuthenticate@1
displayName: Authenticate NuGet
- task: UseDotNet@2
displayName: Use .NET SDK from global.json
inputs:
useGlobalJson: true
# Cache and restore NuGet packages
- task: Cache@2
condition: ${{ parameters.cache_nuget }}
displayName: Cache NuGet packages
inputs:
key: 'nuget | "$(Agent.OS)" | **/packages.lock.json, !**/bin/**, !**/obj/**'
restoreKeys: |
nuget | "$(Agent.OS)"
nuget
path: $(NUGET_PACKAGES)
- script: dotnet restore $(solution) --locked-mode
displayName: Restore NuGet packages
# Build
- script: dotnet build $(solution) --configuration $(buildConfiguration) --no-restore -p:ContinuousIntegrationBuild=true
displayName: Run dotnet build
# Pack
- script: dotnet pack $(solution) --configuration $(buildConfiguration) --no-build --output $(Build.ArtifactStagingDirectory)/nupkg
displayName: Run dotnet pack
# Publish
- task: PublishPipelineArtifact@1
displayName: Publish NuGet packages
inputs:
targetPath: $(Build.ArtifactStagingDirectory)/nupkg
artifactName: nupkg
- task: PublishPipelineArtifact@1
displayName: Publish build output
inputs:
targetPath: $(Build.SourcesDirectory)
artifactName: build_output