-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
psake.ps1
212 lines (145 loc) · 6.96 KB
/
psake.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
properties {
$projectRoot = $ENV:BHProjectPath
if(-not $projectRoot) {
$projectRoot = $PSScriptRoot
}
$sut = $env:BHModulePath
$tests = "$projectRoot/tests"
$outputDir = Join-Path -Path $projectRoot -ChildPath 'out'
$outputModDir = Join-Path -Path $outputDir -ChildPath $env:BHProjectName
$manifest = Import-PowerShellDataFile -Path $env:BHPSModuleManifest
$outputModVerDir = Join-Path -Path $outputModDir -ChildPath $manifest.ModuleVersion
$psVersion = $PSVersionTable.PSVersion.Major
$pathSeperator = [IO.Path]::PathSeparator
$dirSeperator = [IO.Path]::DirectorySeparatorChar
}
task default -depends Test
task Init {
Write-Host @"
STATUS: Testing with PowerShell $psVersion
Build System Details:
$($(Get-Item ENV:BH*) | Out-String)
"@
'Pester', 'PSScriptAnalyzer' | Foreach-Object {
if (-not (Get-Module -Name $_ -ListAvailable -Verbose:$false -ErrorAction SilentlyContinue)) {
Install-Module -Name $_ -Repository PSGallery -Scope CurrentUser -AllowClobber -Confirm:$false -ErrorAction Stop -Force
}
Import-Module -Name $_ -Verbose:$false -Force -ErrorAction Stop
}
} -description 'Initialize build environment'
task Test -Depends Init, Analyze, Pester -description 'Run test suite'
task Analyze -depends Compile {
Write-Host "[$outputModVerDir]"
$analysis = Invoke-ScriptAnalyzer -Path $outputModVerDir -Verbose:$false -Recurse
$errors = $analysis | Where-Object {$_.Severity -eq 'Error'}
$warnings = $analysis | Where-Object {$_.Severity -eq 'Warning'}
if (($errors.Count -eq 0) -and ($warnings.Count -eq 0)) {
Write-Host 'PSScriptAnalyzer passed without errors or warnings'
}
if (@($errors).Count -gt 0) {
Write-Error -Message 'One or more Script Analyzer errors were found. Build cannot continue!'
$errors | Format-Table
}
if (@($warnings).Count -gt 0) {
Write-Warning -Message 'One or more Script Analyzer warnings were found. These should be corrected.'
$warnings | Format-Table
}
} -description 'Run PSScriptAnalyzer'
task Compile -depends Clean {
# Create module output directory
$modDir = New-Item -Path $outputModDir -ItemType Directory
New-Item -Path $outputModVerDir -ItemType Directory > $null
# Append items to psm1
Write-Verbose -Message 'Creating psm1...'
$psm1 = Copy-Item -Path (Join-Path -Path $sut -ChildPath 'PSDsHook.psm1') -Destination (Join-Path -Path $outputModVerDir -ChildPath "$($ENV:BHProjectName).psm1") -PassThru
# Organize classes based on how they will be accessed
$classDir = (Join-Path -Path $sut -ChildPath 'classes')
@(
'DiscordColor'
'DiscordConfig'
'DiscordField'
'DiscordThumbnail'
'DiscordImage'
'DiscordAuthor'
'DiscordFooter'
'DiscordEmbed'
'DiscordFile'
) | ForEach-Object {
Get-Content -Path (Join-Path -Path $classDir -ChildPath "$($_).ps1") | Add-Content -Path $psm1 -Encoding UTF8
}
Get-ChildItem -Path (Join-Path -Path $sut -ChildPath "functions$($dirSeperator)private") -Recurse |
Get-Content -Raw | Add-Content -Path $psm1 -Encoding UTF8
Get-ChildItem -Path (Join-Path -Path $sut -ChildPath "functions$($dirSeperator)public") -Recurse |
Get-Content -Raw | Add-Content -Path $psm1 -Encoding UTF8
# Copy over other items
Copy-Item -Path $env:BHPSModuleManifest -Destination $outputModVerDir
Write-Host "Created compiled module at [$modDir]"
} -description 'Compiles module from source'
task Pester -depends Compile {
Push-Location
Set-Location -PassThru $outputModDir
if(-not $ENV:BHProjectPath) {
Set-BuildEnvironment -Path $PSScriptRoot\..
}
$origModulePath = $env:PSModulePath
if ( $env:PSModulePath.split($pathSeperator) -notcontains $outputDir ) {
$env:PSModulePath = ($outputDir + $pathSeperator + $origModulePath)
}
Remove-Module $ENV:BHProjectName -ErrorAction SilentlyContinue -Verbose:$false
Import-Module -Name $outputModDir -Force -Verbose:$false
$testResultsXml = Join-Path -Path $outputDir -ChildPath 'testResults.xml'
$testResults = Invoke-Pester -Path $tests -PassThru -OutputFile $testResultsXml -OutputFormat NUnitXml
#Upload test artifacts to AppVeyor
if ($env:APPVEYOR_JOB_ID) {
$wc = New-Object 'System.Net.WebClient'
$wc.UploadFile("https://ci.appveyor.com/api/testresults/nunit/$($env:APPVEYOR_JOB_ID)", $testResultsXml)
}
if ($testResults.FailedCount -gt 0) {
$testResults | Format-List
Write-Error -Message 'One or more Pester tests failed. Build cannot continue!'
}
Pop-Location
$env:PSModulePath = $origModulePath
} -description 'Run Pester tests'
<#
task CreateMarkdownHelp -Depends Compile {
#Get functions
Import-Module -Name $outputModDir -Verbose:$false -Global
$mdHelpPath = Join-Path -Path $projectRoot -ChildPath 'docs/reference/functions'
$mdFiles = New-MarkdownHelp -Module $env:BHProjectName -OutputFolder $mdHelpPath -WithModulePage -Force
Write-Host `t"Module markdown help created at [$mdHelpPath]"
@($env:BHProjectName).ForEach({
Remove-Module -Name $_ -Verbose:$false
})
} -description 'Create initial markdown help files'
task UpdateMarkdownHelp -Depends Compile {
#Import-Module -Name $sut -Force -Verbose:$false
Import-Module -Name $outputModDir -Verbose:$false
$mdHelpPath = Join-Path -Path $projectRoot -ChildPath 'docs/reference/functions'
$mdFiles = Update-MarkdownHelpModule -Path $mdHelpPath -Verbose:$false
Write-Host `t"Markdown help updated at [$mdHelpPath]"
} -description 'Update markdown help files'
task CreateExternalHelp -Depends CreateMarkdownHelp {
New-ExternalHelp "$projectRoot\docs\reference\functions" -OutputPath "$outputModVerDir\en-US" -Force
} -description 'Create module help from markdown files'
Task RegenerateHelp -Depends UpdateMarkdownHelp, CreateExternalHelp
#CreateMarkdownHelp (add back to build)
task Build -depends Compile, CreateMarkdownHelp, CreateExternalHelp {
# External help
$helpXml = New-ExternalHelp "$projectRoot\docs\reference\functions" -OutputPath (Join-Path -Path $outputModVerDir -ChildPath 'en-US') -Force
Write-Host `t"Module XML help created at [.helpXml]"
}
#>
task Clean -depends Init {
Remove-Module -Name $env:BHProjectName -Force -ErrorAction SilentlyContinue
if (Test-Path -Path $outputDir) {
Get-ChildItem -Path $outputDir -Recurse | Remove-Item -Force -Recurse
} else {
New-Item -Path $outputDir -ItemType Directory > $null
}
Write-Host `t"Cleaned previous output directory [$outputDir]"
} -description 'Cleans module output directory'
Task Publish -Depends Test {
Write-Host `t"Running PSDeploy for version [$($manifest.ModuleVersion)]..."
Invoke-PSDeploy -Path $projectRoot -Force
}