-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathbuild.ps1
70 lines (67 loc) · 2.79 KB
/
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
[cmdletbinding()]
param (
[parameter(Mandatory = $true)]
[System.IO.FileInfo]$modulePath,
[parameter(Mandatory = $false)]
[string]$moduleName,
[parameter(Mandatory = $false)]
[switch]$buildLocal
)
if ($buildLocal) {
[int32]$env:BUILD_BUILDID = 420
if (Test-Path $PSScriptRoot\localenv.ps1 -ErrorAction SilentlyContinue) {
. $PSScriptRoot\localenv.ps1
}
if (Test-Path "$PSScriptRoot\bin\release\*") {
[int32]$env:BUILD_BUILDID = ((Get-ChildItem $PSScriptRoot\bin\release\).Name | Measure-Object -Maximum | Select-Object -ExpandProperty Maximum) + 1
}
}
try {
if (!($moduleName)) {
$moduleName = Split-Path $modulePath -Leaf
}
#region Generate a new version number
$newVersion = New-Object version -ArgumentList 1, 0, 0, $env:BUILD_BUILDID
#endregion
#region Build out the release
$relPath = "$PSScriptRoot\bin\release\$env:BUILD_BUILDID\$moduleName"
"Version is $newVersion"
"Module Path is $modulePath"
"Module Name is $moduleName"
"Release Path is $relPath"
if (!(Test-Path $relPath)) {
New-Item -Path $relPath -ItemType Directory -Force | Out-Null
}
Copy-Item "$modulePath\*" -Destination "$relPath" -Recurse -Exclude ".gitKeep"
#endregion
#region Generate a list of public functions and update the module manifest
$functions = @(Get-ChildItem -Path $relPath\Public\*.ps1 -ErrorAction SilentlyContinue).basename
$params = @{
Path = "$relPath\$ModuleName.psd1"
ModuleVersion = $newVersion
Description = (Get-Content $relPath\description.txt -raw).ToString()
FunctionsToExport = $functions
ReleaseNotes = @((git log --oneline --decorate -- './Intune.HV.Tools/*.*') -join "`n")
}
Update-ModuleManifest @params
$moduleManifest = Get-Content $relPath\$ModuleName.psd1 -raw | Invoke-Expression
#endregion
#region Generate the nuspec manifest
$t = [xml](Get-Content $PSScriptRoot\module.nuspec -Raw)
$t.package.metadata.id = $moduleName
$t.package.metadata.version = $newVersion.ToString()
$t.package.metadata.authors = $moduleManifest.author.ToString()
$t.package.metadata.owners = $moduleManifest.author.ToString()
$t.package.metadata.requireLicenseAcceptance = "false"
$t.package.metadata.description = (Get-Content $relPath\description.txt -raw).ToString()
$t.package.metadata.description
$t.package.metadata.releaseNotes = @((git log --oneline --decorate -- './Intune.HV.Tools/*.*') -join "`n")
$t.package.metadata.releaseNotes
$t.package.metadata.copyright = $moduleManifest.copyright.ToString()
$t.package.metadata.tags = ($moduleManifest.PrivateData.PSData.Tags -join ',').ToString()
$t.Save("$PSScriptRoot\$moduleName`.nuspec")
#endregion
}
catch {
$_
}