PSRule-vscode/pipeline.build.ps1

214 строки
6.3 KiB
PowerShell
Исходник Обычный вид История

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# Invoke-Build
# CI pipeline script for PSRule-vscode
2019-03-01 14:04:48 +03:00
[CmdletBinding()]
2019-03-01 14:04:48 +03:00
param (
[Parameter(Mandatory = $False)]
[String]$Build,
2019-03-01 14:04:48 +03:00
[Parameter(Mandatory = $False)]
[ValidateSet('preview', 'stable', 'canary')]
[String]$Channel,
2019-03-01 14:04:48 +03:00
[Parameter(Mandatory = $False)]
[String]$Configuration = 'Debug',
[Parameter(Mandatory = $False)]
2019-08-04 15:06:00 +03:00
[String]$OutputPath = (Join-Path -Path $PWD -ChildPath out),
2019-03-02 13:02:21 +03:00
[Parameter(Mandatory = $False)]
[String]$ApiKey,
[Parameter(Mandatory = $False)]
[String]$AssertStyle = 'AzurePipelines'
2019-03-01 14:04:48 +03:00
)
Write-Host -Object "[Pipeline] -- PWD: $PWD" -ForegroundColor Green;
2019-08-04 15:06:00 +03:00
Write-Host -Object "[Pipeline] -- OutputPath: $OutputPath" -ForegroundColor Green;
Write-Host -Object "[Pipeline] -- BuildNumber: $($Env:BUILD_BUILDNUMBER)" -ForegroundColor Green;
Write-Host -Object "[Pipeline] -- SourceBranch: $($Env:BUILD_SOURCEBRANCH)" -ForegroundColor Green;
Write-Host -Object "[Pipeline] -- SourceBranchName: $($Env:BUILD_SOURCEBRANCHNAME)" -ForegroundColor Green;
2019-03-01 14:04:48 +03:00
if ($Env:SYSTEM_DEBUG -eq 'true') {
$VerbosePreference = 'Continue';
}
2019-03-01 14:04:48 +03:00
if ($Env:BUILD_SOURCEBRANCH -like '*/tags/*' -and $Env:BUILD_SOURCEBRANCHNAME -like 'v0.*') {
$Build = $Env:BUILD_SOURCEBRANCHNAME.Substring(1);
}
2019-03-01 14:04:48 +03:00
$version = $Build;
$versionSuffix = [String]::Empty;
if ($version -like '*-*') {
[String[]]$versionParts = $version.Split('-', [System.StringSplitOptions]::RemoveEmptyEntries);
$version = $versionParts[0];
if ($versionParts.Length -eq 2) {
$versionSuffix = $versionParts[1];
$Channel = 'preview';
}
else {
$Channel = 'stable';
}
}
# Handle channel
if ([String]::IsNullOrEmpty('Channel')) {
$Channel = 'preview';
}
$channelSuffix = '-preview';
switch ($Channel) {
'canary' { $channelSuffix = '-canary' }
'stable' { $channelSuffix = '' }
default { $channelSuffix = '-preview' }
2019-03-01 14:04:48 +03:00
}
Write-Host -Object "[Pipeline] -- Using channel: $Channel" -ForegroundColor Green;
Write-Host -Object "[Pipeline] -- Using channelSuffix: $channelSuffix" -ForegroundColor Green;
Write-Host -Object "[Pipeline] -- Using version: $version" -ForegroundColor Green;
Write-Host -Object "[Pipeline] -- Using versionSuffix: $versionSuffix" -ForegroundColor Green;
2019-08-04 15:06:00 +03:00
$packageRoot = Join-Path -Path $OutputPath -ChildPath 'package';
$packageName = "psrule-vscode$channelSuffix";
$packagePath = Join-Path -Path $packageRoot -ChildPath "$packageName.vsix";
2019-08-04 15:06:00 +03:00
function Get-RepoRuleData {
[CmdletBinding()]
param (
[Parameter(Position = 0, Mandatory = $False)]
[String]$Path = $PWD
)
process {
GetPathInfo -Path $Path -Verbose:$VerbosePreference;
}
}
function GetPathInfo {
[CmdletBinding()]
param (
[Parameter(Mandatory = $True)]
[String]$Path
)
begin {
$items = New-Object -TypeName System.Collections.ArrayList;
}
process {
$Null = $items.Add((Get-Item -Path $Path));
$files = @(Get-ChildItem -Path $Path -File -Recurse -Include *.ps1,*.psm1,*.psd1,*.cs | Where-Object {
!($_.FullName -like "*.Designer.cs") -and
!($_.FullName -like "*/bin/*") -and
!($_.FullName -like "*/obj/*") -and
!($_.FullName -like "*\obj\*") -and
!($_.FullName -like "*\bin\*") -and
!($_.FullName -like "*\out\*") -and
!($_.FullName -like "*/out/*")
});
$Null = $items.AddRange($files);
}
end {
$items;
}
}
2019-03-01 14:04:48 +03:00
task BuildExtension {
2019-08-04 15:06:00 +03:00
Write-Host '> Building extension' -ForegroundColor Green;
2019-03-01 14:04:48 +03:00
exec { & npm run compile }
}
task PackageExtension {
2019-08-04 15:06:00 +03:00
Write-Host '> Packaging PSRule-vscode' -ForegroundColor Green;
if (!(Test-Path -Path $packageRoot)) {
$Null = New-Item -Path $packageRoot -ItemType Directory -Force;
2019-03-01 14:04:48 +03:00
}
exec { & npm run pack -- --out $packagePath }
2019-03-01 14:04:48 +03:00
}
# Synopsis: Install the extension in Visual Studio Code
2019-03-01 14:04:48 +03:00
task InstallExtension {
2019-08-04 15:06:00 +03:00
Write-Host '> Installing PSRule-vscode' -ForegroundColor Green;
exec { & code --install-extension $packagePath --force }
2019-03-01 14:04:48 +03:00
}
task VersionExtension {
# Update channel
$package = Get-Content ./package.json -Raw | ConvertFrom-Json;
if ($package.name -ne $packageName) {
$package.name = $packageName;
$package | ConvertTo-Json -Depth 99 | Set-Content ./package.json;
}
2019-03-01 14:04:48 +03:00
if (![String]::IsNullOrEmpty($Build)) {
# Update extension version
if (![String]::IsNullOrEmpty($version)) {
Write-Verbose -Message "[VersionExtension] -- Updating extension version";
$package = Get-Content ./package.json -Raw | ConvertFrom-Json;
2019-03-01 14:04:48 +03:00
if ($package.version -ne $version) {
$package.version = $version;
$package | ConvertTo-Json -Depth 99 | Set-Content ./package.json;
}
2019-03-01 14:04:48 +03:00
}
}
}
# Synopsis: Install NuGet provider
task NuGet {
if ($Null -eq (Get-PackageProvider -Name NuGet -ErrorAction Ignore)) {
Install-PackageProvider -Name NuGet -Force -Scope CurrentUser;
}
}
# Synopsis: Install PSRule
task PSRule NuGet, {
if ($Null -eq (Get-InstalledModule -Name PSRule -MinimumVersion 1.3.0 -ErrorAction Ignore)) {
Install-Module -Name PSRule -Repository PSGallery -MinimumVersion 1.3.0 -Scope CurrentUser -Force;
}
Import-Module -Name PSRule -Verbose:$False;
}
# Synopsis: Run validation
task Rules PSRule, {
$assertParams = @{
Path = './.ps-rule/'
Style = $AssertStyle
OutputFormat = 'NUnit3'
ErrorAction = 'Stop'
As = 'Summary'
}
Assert-PSRule @assertParams -InputPath $PWD -Format File -OutputPath reports/ps-rule-file.xml;
}
# Synopsis: Remove temp files
2019-03-01 14:04:48 +03:00
task Clean {
Remove-Item -Path out,reports -Recurse -Force -ErrorAction Ignore;
}
# Synopsis: Restore NPM packages
task PackageRestore {
exec { & npm install --no-save }
2019-03-02 13:02:21 +03:00
}
task ReleaseExtension {
exec { & npm install vsce --no-save }
exec { & npm run publish -- --packagePath $packagePath --pat $ApiKey }
}
2019-06-08 14:28:03 +03:00
# Synopsis: Add shipit build tag
task TagBuild {
if ($Null -ne $Env:BUILD_DEFINITIONNAME) {
Write-Host "`#`#vso[build.addbuildtag]shipit";
}
}
task Build Clean, PackageRestore, BuildExtension, VersionExtension, PackageExtension
2019-03-01 14:04:48 +03:00
task Install Build, InstallExtension
task . Build
2019-03-02 13:02:21 +03:00
2019-06-08 14:28:03 +03:00
task Release ReleaseExtension, TagBuild