-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathSecretManagement.build.ps1
91 lines (71 loc) · 3.09 KB
/
SecretManagement.build.ps1
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
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
[CmdletBinding()]
param(
[ValidateSet("Debug", "Release")]
[string]$Configuration = "Debug"
)
#Requires -Modules @{ ModuleName = "InvokeBuild"; ModuleVersion = "5.0.0" }
task FindDotNet -Before Clean, Build {
Assert (Get-Command dotnet -ErrorAction SilentlyContinue) "The dotnet CLI was not found, please install it: https://aka.ms/dotnet-cli"
$DotnetVersion = dotnet --version
Assert ($?) "The required .NET SDK was not found, please install it: https://aka.ms/dotnet-cli"
Write-Host "Using dotnet $DotnetVersion at path $((Get-Command dotnet).Source)" -ForegroundColor Green
}
task Clean {
Remove-BuildItem ./artifacts, ./module, ./out
Invoke-BuildExec { dotnet clean ./src/code }
}
task BuildDocs -If { Test-Path -LiteralPath ./help } {
New-ExternalHelp -Path ./help -OutputPath ./module/en-US
}
task BuildModule {
New-Item -ItemType Directory -Force ./module | Out-Null
Invoke-BuildExec { dotnet publish ./src/code -c $Configuration }
# Hard code building this in release config since we aren't actually developing it,
# it's only for tests. The tests also hard code the path assuming release config.
Invoke-BuildExec { dotnet publish ./ExtensionModules/CredManStore/src/code -c Release }
$FullModuleName = "Microsoft.PowerShell.SecretManagement"
$CSharpArtifacts = @(
"$FullModuleName.dll",
"$FullModuleName.pdb",
"$FullModuleName.xml",
"System.Runtime.InteropServices.RuntimeInformation.dll")
$CSharpArtifacts | ForEach-Object {
$item = "./artifacts/publish/$FullModuleName/$($Configuration.ToLower())/$_"
Copy-Item -Force -LiteralPath $item -Destination ./module
}
$BaseArtifacts = @(
"src/$FullModuleName.format.ps1xml",
"README.md",
"LICENSE",
"ThirdPartyNotices.txt")
$BaseArtifacts | ForEach-Object {
$itemToCopy = Join-Path $PSScriptRoot $_
Copy-Item -Force -LiteralPath $itemToCopy -Destination ./module
}
[xml]$xml = Get-Content Directory.Build.props
$moduleVersion = $xml.Project.PropertyGroup.ModuleVersion
$manifestContent = Get-Content -LiteralPath "./src/$FullModuleName.psd1" -Raw
$newManifestContent = $manifestContent -replace '{{ModuleVersion}}', $moduleVersion
Set-Content -LiteralPath "./module/$FullModuleName.psd1" -Encoding utf8 -Value $newManifestContent
}
task PackageModule {
New-Item -ItemType Directory -Force ./out | Out-Null
try {
Register-PSResourceRepository -Name SecretManagement -Uri ./out -ErrorAction Stop
Publish-PSResource -Path ./module -Repository SecretManagement -Verbose
} finally {
Unregister-PSResourceRepository -Name SecretManagement
}
}
# AKA Microsoft.PowerShell.SecretManagement.Library
task PackageLibrary -If { $Configuration -eq "Release" } {
Invoke-BuildExec { dotnet pack ./src/code --no-build -c $Configuration -o ./out }
}
task Test {
Invoke-Pester -CI
}
task Build BuildModule, BuildDocs
task Package PackageModule, PackageLibrary
task . Clean, Build