-
Notifications
You must be signed in to change notification settings - Fork 7
/
azure-pipelines.yml
75 lines (67 loc) · 2.29 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
trigger:
branches:
include:
- main
paths:
exclude:
- CHANGELOG.md
tags:
include:
- "v*"
exclude:
- "*-*"
variables:
buildFolderName: output
testResultFolderName: testResults
defaultBranch: main
Agent.Source.Git.ShallowFetchDepth: 0
stages:
- stage: Build
jobs:
- job: CompileDscOnPowerShellCore
displayName: Compile DSC Configuration on PowerShell Core
pool:
vmImage: 'windows-latest'
steps:
- pwsh: |
dir -Path env: | Out-String | Write-Host
displayName: 'Display Environment Variables'
- pwsh: |
dotnet tool install --global GitVersion.Tool --version 5.*
$gitVersionObject = dotnet-gitversion | ConvertFrom-Json
$gitVersionObject.PSObject.Properties.ForEach{
Write-Host -Object "Setting Task Variable '$($_.Name)' with value '$($_.Value)'."
Write-Host -Object "##vso[task.setvariable variable=$($_.Name);]$($_.Value)"
}
Write-Host -Object "##vso[build.updatebuildnumber]$($gitVersionObject.FullSemVer)"
displayName: Calculate ModuleVersion (GitVersion)
- task: PowerShell@2
name: build
displayName: 'Build DSC Artifacts'
inputs:
filePath: './build.ps1'
arguments: '-ResolveDependency -Tasks build -UseModuleFast'
pwsh: true
env:
ModuleVersion: $(NuGetVersionV2)
- task: PublishPipelineArtifact@1
displayName: 'Publish MOF Files'
inputs:
targetPath: '$(buildFolderName)/MOF'
artifact: 'MOF'
publishLocation: 'pipeline'
parallel: true
- task: PublishPipelineArtifact@1
displayName: 'Publish Meta MOF Files'
inputs:
targetPath: '$(buildFolderName)/MetaMOF'
artifact: 'MetaMOF'
publishLocation: 'pipeline'
parallel: true
- task: PublishPipelineArtifact@1
displayName: 'Publish RSOP Files'
inputs:
targetPath: '$(buildFolderName)/RSOP'
artifact: 'RSOP'
publishLocation: 'pipeline'
parallel: true