forked from VirtualEngine/Storefront
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.PSake.ps1
62 lines (52 loc) · 2.37 KB
/
Build.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
#requires -Version 5;
$psake.use_exit_on_error = $true;
Properties {
$moduleName = (Get-Item $PSScriptRoot\*.psd1)[0].BaseName;
$basePath = $psake.build_script_dir;
$buildDir = 'Release';
$buildPath = (Join-Path -Path $basePath -ChildPath $buildDir);
$releasePath = (Join-Path -Path $buildPath -ChildPath $moduleName);
$exclude = @('.git*', '.vscode', 'Release', 'DscResource.Tests', 'Tests', 'Build.PSake.ps1', '*.png');
}
Task Default -Depends Build;
Task Build -Depends Init, Clean, Test, Deploy;
Task Init {
} #end task Init
## Remove release directory
Task Clean -Depends Init {
Write-Host (' Cleaning release directory "{0}".' -f $buildPath) -ForegroundColor Yellow;
if (Test-Path -Path $buildPath) {
Remove-Item -Path $buildPath -Include * -Recurse -Force;
}
[ref] $null = New-Item -Path $buildPath -ItemType Directory -Force;
[ref] $null = New-Item -Path $releasePath -ItemType Directory -Force;
} #end task Clean
Task Test {
$invokePesterParams = @{
Path = "$basePath\Tests";
OutputFile = "$releasePath\TestResult.xml";
OutputFormat = 'NUnitXml';
Strict = $true;
PassThru = $true;
Verbose = $false;
}
$testResult = Invoke-Pester @invokePesterParams;
if ($testResult.FailedCount -gt 0) {
Write-Error ('Failed "{0}" unit tests.' -f $testResult.FailedCount);
}
} #end task Test
Task Deploy -Depends Clean {
Get-ChildItem -Path $basePath -Exclude $exclude | ForEach-Object {
Write-Host (' Copying "{0}"' -f $PSItem.FullName) -ForegroundColor Yellow;
Copy-Item -Path $PSItem -Destination $releasePath -Recurse;
}
} #end task Deploy
Task Publish -Depends Build {
$powershellApiKeyPath = Join-Path -Path $env:UserProfile -ChildPath 'PSGallery.apitoken';
Write-Host (' Loading PowerShell Gallery API Key "{0}"' -f $powershellApiKeyPath) -ForegroundColor Yellow;
$psGalleryApiKey = Get-Content -Path $powershellApiKeyPath | ConvertTo-SecureString;
$bstr = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($psGalleryApiKey);
$nuGetApiKey = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($bstr);
Write-Host (' Publishing module "{0}"' -f $releasePath) -ForegroundColor Yellow;
Publish-Module -Path $releasePath -NuGetApiKey $nuGetApiKey;
} #end task Publish